1
0
mirror of https://github.com/paboyle/Grid.git synced 2024-11-10 07:55:35 +00:00

GPU friendly params object

This commit is contained in:
Peter Boyle 2018-03-19 07:10:12 -04:00
parent 6fe5885fe4
commit bf0a4de919

View File

@ -37,7 +37,7 @@ NAMESPACE_BEGIN(Grid);
// These can move into a params header and be given MacroMagic serialisation
struct GparityWilsonImplParams {
bool overlapCommsCompute;
std::vector<int> twists;
Coordinate twists;
GparityWilsonImplParams() : twists(Nd, 0), overlapCommsCompute(false){};
};