diff --git a/Grid/qcd/action/ActionParams.h b/Grid/qcd/action/ActionParams.h index cce9d7c9..1c34ce86 100644 --- a/Grid/qcd/action/ActionParams.h +++ b/Grid/qcd/action/ActionParams.h @@ -42,13 +42,13 @@ struct GparityWilsonImplParams { struct WilsonImplParams { bool overlapCommsCompute; - std::vector twist_n_2pi_L; - std::vector boundary_phases; + AcceleratorVector twist_n_2pi_L; + AcceleratorVector boundary_phases; WilsonImplParams() { boundary_phases.resize(Nd, 1.0); twist_n_2pi_L.resize(Nd, 0.0); }; - WilsonImplParams(const std::vector phi) : boundary_phases(phi), overlapCommsCompute(false) { + WilsonImplParams(const AcceleratorVector phi) : boundary_phases(phi), overlapCommsCompute(false) { twist_n_2pi_L.resize(Nd, 0.0); } };