diff --git a/lib/algorithms/LinearOperator.h b/lib/algorithms/LinearOperator.h index c449ee8e..12259236 100644 --- a/lib/algorithms/LinearOperator.h +++ b/lib/algorithms/LinearOperator.h @@ -5,6 +5,22 @@ namespace Grid { + ///////////////////////////////////////////////////////////////////////////////////////////// + // Interface defining what I expect of a general sparse matrix, such as a Fermion action + ///////////////////////////////////////////////////////////////////////////////////////////// + template class SparseMatrixBase { + public: + // Full checkerboar operations + virtual void M (const Field &in, Field &out); + virtual void Mdag (const Field &in, Field &out); + virtual RealD MdagM(const Field &in, Field &out); + + // half checkerboard operaions + virtual void Mpc (const Field &in, Field &out); + virtual void MpcDag (const Field &in, Field &out); + virtual RealD MpcDagMpc(const Field &in, Field &out); + }; + ///////////////////////////////////////////////////////////////////////////////////////////// // LinearOperators Take a something and return a something. ///////////////////////////////////////////////////////////////////////////////////////////// @@ -27,25 +43,13 @@ namespace Grid { ///////////////////////////////////////////////////////////////////////////////////////////// template class HermitianOperatorBase : public LinearOperatorBase { public: + virtual RealD OpAndNorm(const Field &in, Field &out); void AdjOp(const Field &in, Field &out) { - return Op(in,out); + Op(in,out); + }; + void Op(const Field &in, Field &out) { + OpAndNorm(in,out); }; - }; - - ///////////////////////////////////////////////////////////////////////////////////////////// - // Interface defining what I expect of a general sparse matrix - ///////////////////////////////////////////////////////////////////////////////////////////// - template class SparseMatrixBase { - public: - // Full checkerboar operations - virtual void M (const Field &in, Field &out); - virtual void Mdag (const Field &in, Field &out); - virtual void MdagM(const Field &in, Field &out); - - // half checkerboard operaions - virtual void Mpc (const Field &in, Field &out); - virtual void MpcDag (const Field &in, Field &out); - virtual void MpcDagMpc(const Field &in, Field &out); }; ///////////////////////////////////////////////////////////////////////////////////////////// @@ -79,10 +83,10 @@ namespace Grid { public: NonHermitianRedBlackOperator(SparseMatrix &Mat): _Mat(Mat){}; void Op (const Field &in, Field &out){ - this->Mpc(in,out); + _Mat.Mpc(in,out); } void AdjOp (const Field &in, Field &out){ // - this->MpcDag(in,out); + _Mat.MpcDag(in,out); } }; @@ -94,12 +98,8 @@ namespace Grid { SparseMatrix &_Mat; public: HermitianOperator(SparseMatrix &Mat): _Mat(Mat) {}; - - void Op (const Field &in, Field &out){ - this->Mpc(in,out); - } - void AdjOp (const Field &in, Field &out){ // - this->MpcDag(in,out); + RealD OpAndNorm(const Field &in, Field &out){ + return _Mat.MdagM(in,out); } }; @@ -111,8 +111,8 @@ namespace Grid { SparseMatrix &_Mat; public: HermitianRedBlackOperator(SparseMatrix &Mat): _Mat(Mat) {}; - void Op (const Field &in, Field &out){ - this->MpcDagMpc(in,out); + RealD OpAndNorm(const Field &in, Field &out){ + return _Mat.MpcDagMpc(in,out); } }; @@ -141,6 +141,7 @@ namespace Grid { public: RealD Tolerance; Integer MaxIterations; + IterativeProcess(RealD tol,Integer maxit) : Tolerance(tol),MaxIterations(maxit) {}; virtual void operator() (LinearOperatorBase *Linop,const Field &in, Field &out) = 0; }; diff --git a/lib/algorithms/approx/PolynomialApprox.h b/lib/algorithms/approx/PolynomialApprox.h index 5f59a078..5515b325 100644 --- a/lib/algorithms/approx/PolynomialApprox.h +++ b/lib/algorithms/approx/PolynomialApprox.h @@ -1,6 +1,9 @@ #ifndef GRID_POLYNOMIAL_APPROX_H #define GRID_POLYNOMIAL_APPROX_H +#include +#include + namespace Grid { //////////////////////////////////////////////////////////////////////////////////////////// diff --git a/lib/algorithms/iterative/ConjugateGradient.h b/lib/algorithms/iterative/ConjugateGradient.h new file mode 100644 index 00000000..ad305d2f --- /dev/null +++ b/lib/algorithms/iterative/ConjugateGradient.h @@ -0,0 +1,88 @@ +#ifndef GRID_CONJUGATE_GRADIENT_H +#define GRID_CONJUGATE_GRADIENT_H + +#include +#include + +namespace Grid { + + template class ConjugateGradient : public IterativeProcess { + public: + + ConjugateGradient(RealD tol,Integer maxit): IterativeProces(tol,maxit) {}; + + void operator() (HermitianOperatorBase *Linop,const Field &src, Field &psi){ + + RealD residual = Tolerance; + RealD cp,c,a,d,b,ssq,qq,b_pred; + + Field p(src); + Field mmp(src); + Field r(src); + + //Initial residual computation & set up + RealD guess = norm2(psi); + + Linop.OpAndNorm(psi,mmp,d,b); + + r= src-mmp; + p= r; + + a =norm2(p); + cp =a; + ssq=norm2(src); + + std::cout <