1
0
mirror of https://github.com/paboyle/Grid.git synced 2024-11-09 23:45:36 +00:00

This works around a stacksize limit on AMD GPU

This commit is contained in:
Peter Boyle 2023-10-24 10:56:07 -04:00
parent aa5047a9e4
commit 38b87de53f

View File

@ -436,8 +436,8 @@ public:
} }
void ExchangeCoarseLinks(void){ void ExchangeCoarseLinks(void){
for(int p=0;p<geom.npoint;p++){ for(int p=0;p<geom.npoint;p++){
_A[p] = Cell.Exchange(_A[p]); _A[p] = Cell.ExchangePeriodic(_A[p]);
_Adag[p]= Cell.Exchange(_Adag[p]); _Adag[p]= Cell.ExchangePeriodic(_Adag[p]);
} }
} }
virtual void Mdiag (const Field &in, Field &out){ assert(0);}; virtual void Mdiag (const Field &in, Field &out){ assert(0);};