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

Clearer kernel call meaning

This commit is contained in:
Peter Boyle 2018-07-05 07:06:15 -04:00
parent 19b527e83f
commit ca0607b6ef

View File

@ -516,9 +516,9 @@ void WilsonFermion5D<Impl>::DhopInternalSerialComms(StencilImpl & st, LebesgueOr
auto U_v = U.View();
int Opt = WilsonKernelsStatic::Opt;
if (dag == DaggerYes) {
Kernels::DhopDag(Opt,st,U,st.CommBuf(),LLs,U_v.end(),in,out);
Kernels::DhopDag(Opt,st,U,st.CommBuf(),LLs,U_v.size(),in,out);
} else {
Kernels::Dhop(Opt,st,U,st.CommBuf(),LLs,U_v.end(),in,out);
Kernels::Dhop(Opt,st,U,st.CommBuf(),LLs,U_v.size(),in,out);
}
DhopComputeTime+=usecond();
}