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

Verbose issue with GPT

This commit is contained in:
Peter Boyle 2025-02-25 16:55:23 +00:00
parent ba9bbe0221
commit b2ce760cf4

View File

@ -50,7 +50,7 @@ namespace Grid{
int64_t index64;
IndexFromCoorReversed(coor,index64,dims);
if ( index64>=2*1024*1024*1024LL ){
std::cout << " IndexFromCoorReversed " << coor<<" index " << index64<< " dims "<<dims<<std::endl;
std::cout << " IndexFromCoorReversed overflow"<<std::endl;
}
assert(index64<2*1024*1024*1024LL);
index = (int) index64;