From 019ffe17d4f1ba9d167cb45f62ea7a0df0c19adc Mon Sep 17 00:00:00 2001 From: Christoph Lehner Date: Tue, 2 Feb 2021 11:32:23 +0100 Subject: [PATCH] Allow for GPU vector width beyond 64 --- Grid/util/Coordinate.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Grid/util/Coordinate.h b/Grid/util/Coordinate.h index 004fbc72..89f73264 100644 --- a/Grid/util/Coordinate.h +++ b/Grid/util/Coordinate.h @@ -88,7 +88,7 @@ public: // Coordinate class, maxdims = 8 for now. //////////////////////////////////////////////////////////////// #define GRID_MAX_LATTICE_DIMENSION (8) -#define GRID_MAX_SIMD (16) +#define GRID_MAX_SIMD (sizeof(vInteger)/sizeof(Integer)) static constexpr int MaxDims = GRID_MAX_LATTICE_DIMENSION;