diff --git a/lib/algorithms/iterative/ConjugateGradient.h b/lib/algorithms/iterative/ConjugateGradient.h index cf3872c8..0f24ae94 100644 --- a/lib/algorithms/iterative/ConjugateGradient.h +++ b/lib/algorithms/iterative/ConjugateGradient.h @@ -45,6 +45,8 @@ class ConjugateGradient : public OperatorFunction { // Defaults true. RealD Tolerance; Integer MaxIterations; + Integer IterationsToComplete; //Number of iterations the CG took to finish. Filled in upon completion + ConjugateGradient(RealD tol, Integer maxit, bool err_on_no_conv = true) : Tolerance(tol), MaxIterations(maxit), @@ -155,13 +157,14 @@ class ConjugateGradient : public OperatorFunction { std::cout << std::endl; if (ErrorOnNoConverge) assert(true_residual / Tolerance < 10000.0); - + IterationsToComplete = k; return; } } std::cout << GridLogMessage << "ConjugateGradient did NOT converge" << std::endl; if (ErrorOnNoConverge) assert(0); + IterationsToComplete = k; } }; } diff --git a/lib/algorithms/iterative/ConjugateGradientMixedPrec.h b/lib/algorithms/iterative/ConjugateGradientMixedPrec.h index 446465a1..c7332455 100644 --- a/lib/algorithms/iterative/ConjugateGradientMixedPrec.h +++ b/lib/algorithms/iterative/ConjugateGradientMixedPrec.h @@ -35,6 +35,7 @@ namespace Grid { class MixedPrecisionConjugateGradient : public LinearFunction { public: RealD Tolerance; + RealD InnerTolerance; //Initial tolerance for inner CG. Defaults to Tolerance but can be changed Integer MaxInnerIterations; Integer MaxOuterIterations; GridBase* SinglePrecGrid; //Grid for single-precision fields @@ -42,12 +43,16 @@ namespace Grid { LinearOperatorBase &Linop_f; LinearOperatorBase &Linop_d; + Integer TotalInnerIterations; //Number of inner CG iterations + Integer TotalOuterIterations; //Number of restarts + Integer TotalFinalStepIterations; //Number of CG iterations in final patch-up step + //Option to speed up *inner single precision* solves using a LinearFunction that produces a guess LinearFunction *guesser; MixedPrecisionConjugateGradient(RealD tol, Integer maxinnerit, Integer maxouterit, GridBase* _sp_grid, LinearOperatorBase &_Linop_f, LinearOperatorBase &_Linop_d) : Linop_f(_Linop_f), Linop_d(_Linop_d), - Tolerance(tol), MaxInnerIterations(maxinnerit), MaxOuterIterations(maxouterit), SinglePrecGrid(_sp_grid), + Tolerance(tol), InnerTolerance(tol), MaxInnerIterations(maxinnerit), MaxOuterIterations(maxouterit), SinglePrecGrid(_sp_grid), OuterLoopNormMult(100.), guesser(NULL){ }; void useGuesser(LinearFunction &g){ @@ -55,6 +60,8 @@ namespace Grid { } void operator() (const FieldD &src_d_in, FieldD &sol_d){ + TotalInnerIterations = 0; + GridStopWatch TotalTimer; TotalTimer.Start(); @@ -74,7 +81,7 @@ namespace Grid { FieldD src_d(DoublePrecGrid); src_d = src_d_in; //source for next inner iteration, computed from residual during operation - RealD inner_tol = Tolerance; + RealD inner_tol = InnerTolerance; FieldF src_f(SinglePrecGrid); src_f.checkerboard = cb; @@ -89,7 +96,9 @@ namespace Grid { GridStopWatch PrecChangeTimer; - for(Integer outer_iter = 0; outer_iter < MaxOuterIterations; outer_iter++){ + Integer &outer_iter = TotalOuterIterations; //so it will be equal to the final iteration count + + for(outer_iter = 0; outer_iter < MaxOuterIterations; outer_iter++){ //Compute double precision rsd and also new RHS vector. Linop_d.HermOp(sol_d, tmp_d); RealD norm = axpy_norm(src_d, -1., tmp_d, src_d_in); //src_d is residual vector @@ -117,6 +126,7 @@ namespace Grid { InnerCGtimer.Start(); CG_f(Linop_f, src_f, sol_f); InnerCGtimer.Stop(); + TotalInnerIterations += CG_f.IterationsToComplete; //Convert sol back to double and add to double prec solution PrecChangeTimer.Start(); @@ -131,9 +141,11 @@ namespace Grid { ConjugateGradient CG_d(Tolerance, MaxInnerIterations); CG_d(Linop_d, src_d_in, sol_d); + TotalFinalStepIterations = CG_d.IterationsToComplete; TotalTimer.Stop(); - std::cout< Make.inc +HPPFILES=`find . -type f -name '*.hpp'` +echo HFILES=$HFILES $HPPFILES > Make.inc echo >> Make.inc echo CCFILES=$CCFILES >> Make.inc + + # tests Make.inc cd $home/tests dirs=`find . -type d -not -path '*/\.*'`