From 33d6bbe32bf6426ad1113e77d1feab55020fd851 Mon Sep 17 00:00:00 2001 From: Peter Boyle Date: Tue, 4 Jun 2019 20:48:52 +0100 Subject: [PATCH] GPU must use accelerator vectors --- Grid/qcd/action/ActionParams.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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); } };