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

Useful periodic print. CG convergence bound is remarkably accurate on

low eigenvalue in numerical tests
This commit is contained in:
Peter Boyle 2022-06-14 23:40:04 -04:00
parent 57bd0a0a22
commit e9648a1635

View File

@ -152,8 +152,13 @@ public:
LinearCombTimer.Stop();
LinalgTimer.Stop();
std::cout << GridLogIterative << "ConjugateGradient: Iteration " << k
if ( (k % 500) == 0 ) {
std::cout << GridLogMessage << "ConjugateGradient: Iteration " << k
<< " residual " << sqrt(cp/ssq) << " target " << Tolerance << std::endl;
} else {
std::cout << GridLogIterative << "ConjugateGradient: Iteration " << k
<< " residual " << sqrt(cp/ssq) << " target " << Tolerance << std::endl;
}
// Stopping condition
if (cp <= rsq) {