From 81987b64a6424abba3369a22c08262f494d05750 Mon Sep 17 00:00:00 2001 From: Peter Boyle Date: Tue, 21 Jul 2015 13:52:23 +0900 Subject: [PATCH] This file is being developed and will remain hacky until the new algorithm is complete --- tests/Test_dwf_hdcr.cc | 176 +++++++++++++++++++++++++++++++++++++++-- 1 file changed, 169 insertions(+), 7 deletions(-) diff --git a/tests/Test_dwf_hdcr.cc b/tests/Test_dwf_hdcr.cc index bafdb639..488f7277 100644 --- a/tests/Test_dwf_hdcr.cc +++ b/tests/Test_dwf_hdcr.cc @@ -6,6 +6,10 @@ using namespace std; using namespace Grid; using namespace Grid::QCD; +RealD InverseApproximation(RealD x){ + return 1.0/x; +} + template class MultiGridPreconditioner : public LinearFunction< Lattice > { public: @@ -33,6 +37,27 @@ public: _Matrix(FineMatrix) { } + + void PowerMethod(const FineField &in) { + + FineField p1(in._grid); + FineField p2(in._grid); + + MdagMLinearOperator fMdagMOp(_Matrix); + + p1=in; + RealD absp2; + for(int i=0;i<20;i++){ + RealD absp1=std::sqrt(norm2(p1)); + fMdagMOp.HermOp(p1,p2);// this is the G5 herm bit + // _FineOperator.Op(p1,p2);// this is the G5 herm bit + RealD absp2=std::sqrt(norm2(p2)); + if(i%10==9) + std::cout << "Power method on mdagm "< fCG(1.0e-1,1000); + ConjugateGradient fCG(1.0e-3,1000); ConjugateGradient CG(1.0e-8,100000); //////////////////////////////////////////////////////////////////////// @@ -164,6 +189,7 @@ public: } #endif // ADEF1: [MP+Q ] in =M [1 - A Q] in + Q in +#if 0 void operator()(const FineField &in, FineField & out) { CoarseVector Csrc(_CoarseOperator.Grid()); @@ -171,11 +197,11 @@ public: CoarseVector Csol(_CoarseOperator.Grid()); Csol=zero; ConjugateGradient CG(1.0e-10,100000); - ConjugateGradient fCG(1.0e-3,1000); + ConjugateGradient fCG(3.0e-2,1000); HermitianLinearOperator HermOp(_CoarseOperator); MdagMLinearOperator MdagMOp(_CoarseOperator); - MdagMLinearOperator fMdagMOp(_Matrix); + ShiftedMdagMLinearOperator fMdagMOp(_Matrix,0.1); FineField tmp(in._grid); FineField res(in._grid); @@ -191,7 +217,7 @@ public: CG(MdagMOp,Ctmp,Csol); _Aggregates.PromoteFromSubspace(Csol,Qin); - + // Qin=0; _FineOperator.Op(Qin,tmp);// A Q in tmp = in - tmp; // in - A Q in @@ -206,6 +232,116 @@ public: std::cout<<"preconditioner thinks residual is "< fMdagMOp(_Matrix); + ShiftedMdagMLinearOperator fMdagMOp(_Matrix,0.5); + + RealD Ni,r; + + Ni = norm2(in); + + for(int ilo=0;ilo<4;ilo++){ + for(int ord=10;ord<60;ord+=10){ + + _FineOperator.AdjOp(in,vec1); + + Chebyshev Cheby (lo[ilo],70.0,ord,InverseApproximation); + Cheby(fMdagMOp,vec1,vec2); // solves MdagM = g5 M g5M + + _FineOperator.Op(vec2,vec1);// this is the G5 herm bit + vec1 = in - vec1; // tmp = in - A Min + r=norm2(vec1); + std::cout << "Smoother resid "< CG(1.0e-5,100000); + ConjugateGradient fCG(3.0e-2,1000); + + HermitianLinearOperator HermOp(_CoarseOperator); + MdagMLinearOperator MdagMOp(_CoarseOperator); + // MdagMLinearOperator fMdagMOp(_Matrix); + ShiftedMdagMLinearOperator fMdagMOp(_Matrix,0.5); + + FineField vec1(in._grid); + FineField vec2(in._grid); + + // Chebyshev Cheby (0.5,70.0,30,InverseApproximation); + // Chebyshev ChebyAccu(0.5,70.0,30,InverseApproximation); + Chebyshev Cheby (1.0,70.0,20,InverseApproximation); + Chebyshev ChebyAccu(1.0,70.0,20,InverseApproximation); + + _Aggregates.ProjectToSubspace (Csrc,in); + _Aggregates.PromoteFromSubspace(Csrc,out); + std::cout<<"Completeness: "< clatt = GridDefaultLatt(); for(int d=0;d Subspace; typedef CoarsenedMatrix CoarseOperator; @@ -276,7 +413,19 @@ int main (int argc, char ** argv) std::cout << "**************************************************"<< std::endl; MdagMLinearOperator HermDefOp(Ddwf); Subspace Aggregates(Coarse5d,FGrid); - Aggregates.CreateSubspace(RNG5,HermDefOp); + // Aggregates.CreateSubspace(RNG5,HermDefOp,nbasis); + assert ( (nbasis & 0x1)==0); + int nb=nbasis/2; + std::cout << " nbasis/2 = "< simple; ConjugateGradient fCG(1.0e-8,100000); fCG(HermDefOp,src,result); + // exit(0); std::cout << "**************************************************"<< std::endl; std::cout << "Testing GCR on indef matrix "<< std::endl; @@ -332,6 +487,13 @@ int main (int argc, char ** argv) // PrecGeneralisedConjugateResidual UPGCR(1.0e-8,100000,simple,8,128); // UPGCR(HermIndefOp,src,result); + + /// Get themax eval + std::cout << "**************************************************"<< std::endl; + std::cout <<" Applying power method to find spectral range "<