From ca0607b6ef5e3b5b112932db6ecd05626591f780 Mon Sep 17 00:00:00 2001 From: Peter Boyle Date: Thu, 5 Jul 2018 07:06:15 -0400 Subject: [PATCH] Clearer kernel call meaning --- lib/qcd/action/fermion/WilsonFermion5D.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/qcd/action/fermion/WilsonFermion5D.cc b/lib/qcd/action/fermion/WilsonFermion5D.cc index 4a490dae..01fde381 100644 --- a/lib/qcd/action/fermion/WilsonFermion5D.cc +++ b/lib/qcd/action/fermion/WilsonFermion5D.cc @@ -516,9 +516,9 @@ void WilsonFermion5D::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(); }