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

Debug of previous commit

This commit is contained in:
Guido Cossu 2018-04-26 14:18:11 +09:00
parent 43f5a0df50
commit 6358f35b7e

View File

@ -240,7 +240,7 @@ public:
double start = usecond();
fill_smearedSet(U);
double end = usecond();
double time = (stop - start)/ 1e3;
double time = (end - start)/ 1e3;
std::cout << GridLogMessage << "Smearing in " << time << " ms" << std::endl;
}
@ -271,7 +271,7 @@ public:
pokeLorentz(SigmaTilde, tmp_mu, mu);
}
double end = usecond();
double time = (stop - start)/ 1e3;
double time = (end - start)/ 1e3;
std::cout << GridLogMessage << "Smearing force in " << time << " ms" << std::endl;
} // if smearingLevels = 0 do nothing
}