mirror of
https://github.com/paboyle/Grid.git
synced 2025-04-04 19:25:56 +01:00
Fixing the comms=none compile
This commit is contained in:
parent
6e90038bf6
commit
5267658748
@ -15,9 +15,10 @@ public:
|
|||||||
GridBase *_grid;
|
GridBase *_grid;
|
||||||
int checkerboard;
|
int checkerboard;
|
||||||
std::vector<vobj,alignedAllocator<vobj> > _odata;
|
std::vector<vobj,alignedAllocator<vobj> > _odata;
|
||||||
|
public:
|
||||||
|
|
||||||
typedef typename vobj::scalar_type scalar_type;
|
typedef typename vobj::scalar_type scalar_type;
|
||||||
typedef typename vobj::vector_type vector_type;
|
typedef typename vobj::vector_type vector_type;
|
||||||
public:
|
|
||||||
|
|
||||||
Lattice(GridBase *grid) : _grid(grid) {
|
Lattice(GridBase *grid) : _grid(grid) {
|
||||||
_odata.reserve(_grid->oSites());
|
_odata.reserve(_grid->oSites());
|
||||||
|
@ -6,6 +6,7 @@ friend Lattice<vobj> Cshift(Lattice<vobj> &rhs,int dimension,int shift)
|
|||||||
Lattice<vobj> ret(rhs._grid);
|
Lattice<vobj> ret(rhs._grid);
|
||||||
ret.checkerboard = rhs._grid->CheckerBoardDestination(rhs.checkerboard,shift);
|
ret.checkerboard = rhs._grid->CheckerBoardDestination(rhs.checkerboard,shift);
|
||||||
Cshift_local(ret,rhs,dimension,shift);
|
Cshift_local(ret,rhs,dimension,shift);
|
||||||
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -195,6 +195,7 @@ int main (int argc, char ** argv)
|
|||||||
LatticeCoordinate(coor,d);
|
LatticeCoordinate(coor,d);
|
||||||
lex = lex + coor*mm[d];
|
lex = lex + coor*mm[d];
|
||||||
}
|
}
|
||||||
|
/*
|
||||||
Bar = zero;
|
Bar = zero;
|
||||||
Bar = where(lex<10,Foo,Bar);
|
Bar = where(lex<10,Foo,Bar);
|
||||||
{
|
{
|
||||||
@ -210,7 +211,8 @@ int main (int argc, char ** argv)
|
|||||||
cout<<"bar "<<coor[0]<<coor[1]<<coor[2]<<coor[3] <<" "<<bar._internal._internal[r][c]<<std::endl;
|
cout<<"bar "<<coor[0]<<coor[1]<<coor[2]<<coor[3] <<" "<<bar._internal._internal[r][c]<<std::endl;
|
||||||
}}
|
}}
|
||||||
}}}}
|
}}}}
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
//setCheckerboard(ShiftedCheck,rFoo);
|
//setCheckerboard(ShiftedCheck,rFoo);
|
||||||
//setCheckerboard(ShiftedCheck,bFoo);
|
//setCheckerboard(ShiftedCheck,bFoo);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user