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

commenting

This commit is contained in:
Peter Boyle 2021-05-14 11:45:06 -04:00
parent d3fd23117a
commit 05e1aed326

View File

@ -69,7 +69,7 @@ public:
blocks_per_rank *= (LocalDims[d] / Block[d]); blocks_per_rank *= (LocalDims[d] / Block[d]);
} }
} }
// Even blocks per node required // Even blocks per node required // could be relaxed but inefficient use of hardware as idle nodes in boundary operator R
assert( (blocks_per_rank % 2) == 0); assert( (blocks_per_rank % 2) == 0);
// Possible checks that SIMD lanes are used with full occupancy??? // Possible checks that SIMD lanes are used with full occupancy???