1
0
mirror of https://github.com/paboyle/Grid.git synced 2024-09-20 09:15:38 +01:00

Merge branch 'develop' of https://github.com/Heinrich-BR/Grid into develop

This commit is contained in:
Henrique Rocha 2021-04-06 17:18:39 +01:00
commit d38ae2fd18

View File

@ -51,9 +51,9 @@ template<class vobj> inline void pickCheckerboard(int cb,Lattice<vobj> &half,con
{
half.Checkerboard() = cb;
autoView( half_v, half, AcceleratorWrite);
autoView( full_v, full, AcceleratorRead);
accelerator_for(ss, full.Grid()->oSites(),full.Grid()->Nsimd(),{
autoView( half_v, half, CpuWrite);
autoView( full_v, full, CpuRead);
thread_for(ss, full.Grid()->oSites(),{
int cbos;
Coordinate coor;
full.Grid()->oCoorFromOindex(coor,ss);
@ -68,9 +68,9 @@ template<class vobj> inline void pickCheckerboard(int cb,Lattice<vobj> &half,con
template<class vobj> inline void setCheckerboard(Lattice<vobj> &full,const Lattice<vobj> &half)
{
int cb = half.Checkerboard();
autoView( half_v , half, AcceleratorRead);
autoView( full_v , full, AcceleratorWrite);
accelerator_for(ss, full.Grid()->oSites(),full.Grid()->Nsimd(),{
autoView( half_v , half, CpuRead);
autoView( full_v , full, CpuWrite);
thread_for(ss,full.Grid()->oSites(),{
Coordinate coor;
int cbos;