mirror of
https://github.com/paboyle/Grid.git
synced 2024-11-10 15:55:37 +00:00
d1afebf71e
6000 matmuls CG unprec 2000 matmuls CG prec (4000 eo muls) 1050 matmuls PGCR on 16^3 x 32 x 8 m=.01 Substantial effort on timing and logging infrastructure
84 lines
2.0 KiB
C++
84 lines
2.0 KiB
C++
#ifndef GRID_CONJUGATE_RESIDUAL_H
|
|
#define GRID_CONJUGATE_RESIDUAL_H
|
|
|
|
namespace Grid {
|
|
|
|
/////////////////////////////////////////////////////////////
|
|
// Base classes for iterative processes based on operators
|
|
// single input vec, single output vec.
|
|
/////////////////////////////////////////////////////////////
|
|
|
|
template<class Field>
|
|
class ConjugateResidual : public OperatorFunction<Field> {
|
|
public:
|
|
RealD Tolerance;
|
|
Integer MaxIterations;
|
|
int verbose;
|
|
|
|
ConjugateResidual(RealD tol,Integer maxit) : Tolerance(tol), MaxIterations(maxit) {
|
|
verbose=0;
|
|
};
|
|
|
|
void operator() (LinearOperatorBase<Field> &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);
|
|
|
|
cp =norm2(r);
|
|
ssq=norm2(src);
|
|
rsq=Tolerance*Tolerance*ssq;
|
|
|
|
if (verbose) std::cout<<GridLogMessage<<"ConjugateResidual: iteration " <<0<<" residual "<<cp<< " target"<< rsq<<std::endl;
|
|
|
|
for(int k=1;k<MaxIterations;k++){
|
|
|
|
a = rAr/pAAp;
|
|
|
|
axpy(psi,a,p,psi);
|
|
|
|
cp = axpy_norm(r,-a,Ap,r);
|
|
|
|
rArp=rAr;
|
|
|
|
Linop.HermOpAndNorm(r,Ar,rAr,rAAr);
|
|
|
|
b =rAr/rArp;
|
|
|
|
axpy(p,b,p,r);
|
|
pAAp=axpy_norm(Ap,b,Ap,Ar);
|
|
|
|
if(verbose) std::cout<<GridLogMessage<<"ConjugateResidual: iteration " <<k<<" residual "<<cp<< " target"<< rsq<<std::endl;
|
|
|
|
if(cp<rsq) {
|
|
Linop.HermOp(psi,Ap);
|
|
axpy(r,-1.0,src,Ap);
|
|
RealD true_resid = norm2(r)/ssq;
|
|
std::cout<<GridLogMessage<<"ConjugateResidual: Converged on iteration " <<k
|
|
<< " computed residual "<<sqrt(cp/ssq)
|
|
<< " true residual "<<sqrt(true_resid)
|
|
<< " target " <<Tolerance <<std::endl;
|
|
return;
|
|
}
|
|
|
|
}
|
|
|
|
std::cout<<GridLogMessage<<"ConjugateResidual did NOT converge"<<std::endl;
|
|
assert(0);
|
|
}
|
|
};
|
|
}
|
|
#endif
|