From 23ef0e3e197e880c918eb9a9cbe27874218a90a3 Mon Sep 17 00:00:00 2001 From: paboyle Date: Mon, 15 Jan 2018 00:07:46 +0000 Subject: [PATCH] Namespace and indentation --- .../PrecGeneralisedConjugateResidual.h | 306 +++++++++--------- 1 file changed, 153 insertions(+), 153 deletions(-) diff --git a/lib/algorithms/iterative/PrecGeneralisedConjugateResidual.h b/lib/algorithms/iterative/PrecGeneralisedConjugateResidual.h index fd11352e..642e00b5 100644 --- a/lib/algorithms/iterative/PrecGeneralisedConjugateResidual.h +++ b/lib/algorithms/iterative/PrecGeneralisedConjugateResidual.h @@ -1,4 +1,4 @@ - /************************************************************************************* +/************************************************************************************* Grid physics library, www.github.com/paboyle/Grid @@ -24,8 +24,8 @@ Author: Peter Boyle 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. See the full license in the file "LICENSE" in the top level distribution directory - *************************************************************************************/ - /* END LEGAL */ +*************************************************************************************/ +/* END LEGAL */ #ifndef GRID_PREC_GCR_H #define GRID_PREC_GCR_H @@ -36,195 +36,195 @@ Author: Peter Boyle //NB. Likely not original reference since they are focussing on a preconditioner variant. // but VPGCR was nicely written up in their paper /////////////////////////////////////////////////////////////////////////////////////////////////////// -namespace Grid { +NAMESPACE_BEGIN(Grid); - template - class PrecGeneralisedConjugateResidual : public OperatorFunction { - public: - RealD Tolerance; - Integer MaxIterations; - int verbose; - int mmax; - int nstep; - int steps; - GridStopWatch PrecTimer; - GridStopWatch MatTimer; - GridStopWatch LinalgTimer; +template +class PrecGeneralisedConjugateResidual : public OperatorFunction { +public: + RealD Tolerance; + Integer MaxIterations; + int verbose; + int mmax; + int nstep; + int steps; + GridStopWatch PrecTimer; + GridStopWatch MatTimer; + GridStopWatch LinalgTimer; - LinearFunction &Preconditioner; + LinearFunction &Preconditioner; - PrecGeneralisedConjugateResidual(RealD tol,Integer maxit,LinearFunction &Prec,int _mmax,int _nstep) : - Tolerance(tol), - MaxIterations(maxit), - Preconditioner(Prec), - mmax(_mmax), - nstep(_nstep) - { - verbose=1; - }; + PrecGeneralisedConjugateResidual(RealD tol,Integer maxit,LinearFunction &Prec,int _mmax,int _nstep) : + Tolerance(tol), + MaxIterations(maxit), + Preconditioner(Prec), + mmax(_mmax), + nstep(_nstep) + { + verbose=1; + }; - void operator() (LinearOperatorBase &Linop,const Field &src, Field &psi){ + void operator() (LinearOperatorBase &Linop,const Field &src, Field &psi){ - psi=zero; - RealD cp, ssq,rsq; - ssq=norm2(src); - rsq=Tolerance*Tolerance*ssq; + psi=zero; + RealD cp, ssq,rsq; + ssq=norm2(src); + rsq=Tolerance*Tolerance*ssq; - Field r(src._grid); + Field r(src._grid); - PrecTimer.Reset(); - MatTimer.Reset(); - LinalgTimer.Reset(); + PrecTimer.Reset(); + MatTimer.Reset(); + LinalgTimer.Reset(); - GridStopWatch SolverTimer; - SolverTimer.Start(); + GridStopWatch SolverTimer; + SolverTimer.Start(); - steps=0; - for(int k=0;k &Linop,const Field &src, Field &psi,RealD rsq){ + RealD GCRnStep(LinearOperatorBase &Linop,const Field &src, Field &psi,RealD rsq){ - RealD cp; - RealD a, b, c, d; - RealD zAz, zAAz; - RealD rAq, rq; + RealD cp; + RealD a, b, c, d; + RealD zAz, zAAz; + RealD rAq, rq; - GridBase *grid = src._grid; + GridBase *grid = src._grid; - Field r(grid); - Field z(grid); - Field tmp(grid); - Field ttmp(grid); - Field Az(grid); + Field r(grid); + Field z(grid); + Field tmp(grid); + Field ttmp(grid); + Field Az(grid); - //////////////////////////////// - // history for flexible orthog - //////////////////////////////// - std::vector q(mmax,grid); - std::vector p(mmax,grid); - std::vector qq(mmax); + //////////////////////////////// + // history for flexible orthog + //////////////////////////////// + std::vector q(mmax,grid); + std::vector p(mmax,grid); + std::vector qq(mmax); - ////////////////////////////////// - // initial guess x0 is taken as nonzero. - // r0=src-A x0 = src - ////////////////////////////////// - MatTimer.Start(); - Linop.HermOpAndNorm(psi,Az,zAz,zAAz); - MatTimer.Stop(); - r=src-Az; + ////////////////////////////////// + // initial guess x0 is taken as nonzero. + // r0=src-A x0 = src + ////////////////////////////////// + MatTimer.Start(); + Linop.HermOpAndNorm(psi,Az,zAz,zAAz); + MatTimer.Stop(); + r=src-Az; - ///////////////////// - // p = Prec(r) - ///////////////////// - PrecTimer.Start(); - Preconditioner(r,z); - PrecTimer.Stop(); + ///////////////////// + // p = Prec(r) + ///////////////////// + PrecTimer.Start(); + Preconditioner(r,z); + PrecTimer.Stop(); - MatTimer.Start(); - Linop.HermOp(z,tmp); - MatTimer.Stop(); + MatTimer.Start(); + Linop.HermOp(z,tmp); + MatTimer.Stop(); - ttmp=tmp; - tmp=tmp-r; + ttmp=tmp; + tmp=tmp-r; - /* + /* std::cout<(mmax-1))?(mmax-1):(kp); // if more than mmax done, we orthog all mmax history. + for(int back=0;back(mmax-1))?(mmax-1):(kp); // if more than mmax done, we orthog all mmax history. - for(int back=0;back=0); - - b=-real(innerProduct(q[peri_back],Az))/qq[peri_back]; - p[peri_kp]=p[peri_kp]+b*p[peri_back]; - q[peri_kp]=q[peri_kp]+b*q[peri_back]; - - } - qq[peri_kp]=norm2(q[peri_kp]); // could use axpy_norm + int peri_back=(k-back)%mmax; assert((k-back)>=0); + b=-real(innerProduct(q[peri_back],Az))/qq[peri_back]; + p[peri_kp]=p[peri_kp]+b*p[peri_back]; + q[peri_kp]=q[peri_kp]+b*q[peri_back]; } - assert(0); // never reached - return cp; + qq[peri_kp]=norm2(q[peri_kp]); // could use axpy_norm + + } - }; -} + assert(0); // never reached + return cp; + } +}; +NAMESPACE_END(Grid); #endif