diff --git a/Grid/lattice/Lattice_coordinate.h b/Grid/lattice/Lattice_coordinate.h index 16f3641b..a1abe58d 100644 --- a/Grid/lattice/Lattice_coordinate.h +++ b/Grid/lattice/Lattice_coordinate.h @@ -37,19 +37,18 @@ template inline void LatticeCoordinate(Lattice &l,int mu) GridBase *grid = l.Grid(); int Nsimd = grid->iSites(); - Coordinate gcoor; - ExtractBuffer mergebuf(Nsimd); - - vector_type vI; auto l_v = l.View(); - for(int o=0;ooSites();o++){ + thread_for( o, grid->oSites(), { + vector_type vI; + Coordinate gcoor; + ExtractBuffer mergebuf(Nsimd); for(int i=0;iiSites();i++){ grid->RankIndexToGlobalCoor(grid->ThisRank(),o,i,gcoor); mergebuf[i]=(Integer)gcoor[mu]; } merge(vI,mergebuf); l_v[o]=vI; - } + }); }; // LatticeCoordinate();