From eb5ad2884c2bff4d77ae3f16862e2fc762033587 Mon Sep 17 00:00:00 2001 From: Peter Boyle Date: Sat, 20 Jun 2015 22:24:21 +0100 Subject: [PATCH] Will start this as a two level algorithm --- .../PrecGeneralisedConjugateResidual.h | 86 +++++++++++++++++++ 1 file changed, 86 insertions(+) create mode 100644 lib/algorithms/iterative/PrecGeneralisedConjugateResidual.h diff --git a/lib/algorithms/iterative/PrecGeneralisedConjugateResidual.h b/lib/algorithms/iterative/PrecGeneralisedConjugateResidual.h new file mode 100644 index 00000000..a269ec8a --- /dev/null +++ b/lib/algorithms/iterative/PrecGeneralisedConjugateResidual.h @@ -0,0 +1,86 @@ +#ifndef GRID_PGCR_H +#define GRID_PGCR_H + +namespace Grid { + + ///////////////////////////////////////////////////////////// + // Base classes for iterative processes based on operators + // single input vec, single output vec. + ///////////////////////////////////////////////////////////// + + template + class ConjugateResidual : public OperatorFunction { + public: + RealD Tolerance; + Integer MaxIterations; + int verbose; + + ConjugateResidual(RealD tol,Integer maxit) : Tolerance(tol), MaxIterations(maxit) { + verbose=0; + }; + + void operator() (LinearOperatorBase &Linop,const Field &src, Field &psi){ + + RealD a, b, c, d; + RealD cp, ssq,rsq; + + RealD rAr, rAAr, rArp; + RealD pAp, pAAp; + + GridBase *grid = src._grid; + psi=zero; + Field r(grid), p(grid), Ap(grid), Ar(grid); + + r=src; + p=src; + + Linop.HermOpAndNorm(p,Ap,pAp,pAAp); + Linop.HermOpAndNorm(r,Ar,rAr,rAAr); + + if(verbose) std::cout << "pAp, pAAp"<< pAp<<" "<