mirror of
https://github.com/paboyle/Grid.git
synced 2025-04-04 19:25:56 +01:00
Move site and Ls looping into the kernels
This commit is contained in:
parent
38e2a32ac9
commit
31f65beac8
@ -513,23 +513,12 @@ void WilsonFermion5D<Impl>::DhopInternalSerialComms(StencilImpl & st, LebesgueOr
|
|||||||
|
|
||||||
DhopComputeTime-=usecond();
|
DhopComputeTime-=usecond();
|
||||||
// Dhop takes the 4d grid from U, and makes a 5d index for fermion
|
// Dhop takes the 4d grid from U, and makes a 5d index for fermion
|
||||||
|
auto U_v = U.View();
|
||||||
int Opt = WilsonKernelsStatic::Opt;
|
int Opt = WilsonKernelsStatic::Opt;
|
||||||
auto U_v = U.View();
|
|
||||||
auto in_v = in.View();
|
|
||||||
auto out_v = out.View();
|
|
||||||
if (dag == DaggerYes) {
|
if (dag == DaggerYes) {
|
||||||
accelerator_loop( ss, U_v, {
|
Kernels::DhopDag(Opt,st,U,st.CommBuf(),LLs,U_v.end(),in,out);
|
||||||
int sU = ss;
|
|
||||||
int sF = LLs * sU;
|
|
||||||
Kernels::DhopSiteDag(Opt,st,U_v,st.CommBuf(),sF,sU,LLs,1,in_v,out_v);
|
|
||||||
});
|
|
||||||
} else {
|
} else {
|
||||||
accelerator_loop( ss, U_v , {
|
Kernels::Dhop(Opt,st,U,st.CommBuf(),LLs,U_v.end(),in,out);
|
||||||
int sU = ss;
|
|
||||||
int sF = LLs * sU;
|
|
||||||
Kernels::DhopSite(Opt,st,U_v,st.CommBuf(),sF,sU,LLs,1,in_v,out_v);
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
DhopComputeTime+=usecond();
|
DhopComputeTime+=usecond();
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user