1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-04-04 19:25:56 +01:00

Allow for GPU vector width beyond 64

This commit is contained in:
Christoph Lehner 2021-02-02 11:32:23 +01:00
parent 299d0de066
commit 019ffe17d4

View File

@ -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;