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

REduce the time in single

This commit is contained in:
Peter Boyle 2024-03-26 00:42:40 +00:00
parent f32c275376
commit 59b0cc11df

View File

@ -176,7 +176,7 @@ int main (int argc, char ** argv)
std::cout << " FlightRecorder is OK! "<<std::endl; std::cout << " FlightRecorder is OK! "<<std::endl;
iter ++; iter ++;
} while (time(NULL) < (start + nsecs/2) ); } while (time(NULL) < (start + nsecs/10) );
std::cout << GridLogMessage << "::::::::::::: Starting double precision CG" << std::endl; std::cout << GridLogMessage << "::::::::::::: Starting double precision CG" << std::endl;
ConjugateGradient<LatticeFermionD> CG(1.0e-8,10000); ConjugateGradient<LatticeFermionD> CG(1.0e-8,10000);