1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-06-16 23:07:05 +01:00

Hide internals

This commit is contained in:
paboyle
2018-01-26 23:08:27 +00:00
parent 32523a229c
commit 2a4a0e43c1
7 changed files with 30 additions and 30 deletions

View File

@ -134,7 +134,7 @@ void benchDw(std::vector<int> & latt4, int Ls, int threads,int report )
// replicate across fifth dimension
for(int ss=0;ss<Umu._grid->oSites();ss++){
for(int s=0;s<Ls;s++){
Umu5d._odata[Ls*ss+s] = Umu._odata[ss];
Umu5d[Ls*ss+s] = Umu[ss];
}
}
@ -274,7 +274,7 @@ void benchsDw(std::vector<int> & latt4, int Ls, int threads, int report )
// replicate across fifth dimension
for(int ss=0;ss<Umu._grid->oSites();ss++){
for(int s=0;s<Ls;s++){
Umu5d._odata[Ls*ss+s] = Umu._odata[ss];
Umu5d[Ls*ss+s] = Umu[ss];
}
}