1
0
mirror of https://github.com/paboyle/Grid.git synced 2024-09-20 09:15:38 +01:00
This commit is contained in:
Azusa Yamaguchi 2015-06-16 14:06:31 +01:00
parent cd7eac062a
commit 633ee06faf

View File

@ -158,7 +158,7 @@ PARALLEL_FOR_LOOP
vobj tmp = eval(ss,expr);
vstream(_odata[ss] ,tmp);
#else
_odata[ss]=_eval(ss,expr);
_odata[ss]=eval(ss,expr);
#endif
}
};
@ -196,7 +196,7 @@ PARALLEL_FOR_LOOP
_odata.resize(_grid->oSites());
PARALLEL_FOR_LOOP
for(int ss=0;ss<_grid->oSites();ss++){
_odata[ss]=eval(ss,expr);
vstream(_odata[ss] ,eval(ss,expr));
}
};