2018-01-18 11:38:28 +00:00
/*************************************************************************************
2017-07-21 12:39:03 +01:00
Grid physics library , www . github . com / paboyle / Grid
Source file : . / tests / Test_dwf_hdcr . cc
Copyright ( C ) 2015
2018-01-18 11:38:28 +00:00
Author : Daniel Richtmann < daniel . richtmann @ ur . de >
2017-07-21 12:39:03 +01:00
This program is free software ; you can redistribute it and / or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation ; either version 2 of the License , or
( at your option ) any later version .
This program is distributed in the hope that it will be useful ,
but WITHOUT ANY WARRANTY ; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
GNU General Public License for more details .
You should have received a copy of the GNU General Public License along
with this program ; if not , write to the Free Software Foundation , Inc . ,
51 Franklin Street , Fifth Floor , Boston , MA 02110 - 1301 USA .
See the full license in the file " LICENSE " in the top level distribution directory
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2018-01-18 11:38:28 +00:00
/* END LEGAL */
2017-07-21 12:39:03 +01:00
# include <Grid/Grid.h>
2018-01-17 16:56:34 +00:00
# include <Grid/algorithms/iterative/PrecGeneralisedConjugateResidual.h>
2017-07-21 12:39:03 +01:00
//#include <algorithms/iterative/PrecConjugateResidual.h>
using namespace std ;
using namespace Grid ;
using namespace Grid : : QCD ;
2018-01-18 11:38:28 +00:00
template < class Field , int nbasis > class TestVectorAnalyzer {
2017-11-28 14:03:02 +00:00
public :
2018-01-18 11:38:28 +00:00
void operator ( ) ( LinearOperatorBase < Field > & Linop , std : : vector < Field > const & vectors , int nn = nbasis ) {
2017-11-29 14:04:32 +00:00
// this function corresponds to testvector_analysis_PRECISION from the
// DD-α AMG codebase
2018-01-17 16:56:34 +00:00
auto positiveOnes = 0 ;
2017-11-28 14:03:02 +00:00
std : : vector < Field > tmp ( 4 , vectors [ 0 ] . _grid ) ; // bit hacky?
2018-01-18 11:38:28 +00:00
Gamma g5 ( Gamma : : Algebra : : Gamma5 ) ;
2017-11-28 14:03:02 +00:00
std : : cout < < GridLogMessage < < " Test vector analysis: " < < std : : endl ;
2018-01-18 11:38:28 +00:00
for ( auto i = 0 ; i < nn ; + + i ) {
2017-11-28 14:03:02 +00:00
2017-11-29 14:04:32 +00:00
Linop . Op ( vectors [ i ] , tmp [ 3 ] ) ;
2017-11-28 14:03:02 +00:00
2017-11-29 14:04:32 +00:00
tmp [ 0 ] = g5 * tmp [ 3 ] ; // is this the same as coarse_gamma5_PRECISION?
2017-11-28 14:03:02 +00:00
auto lambda = innerProduct ( vectors [ i ] , tmp [ 0 ] ) / innerProduct ( vectors [ i ] , vectors [ i ] ) ;
2017-11-29 14:04:32 +00:00
tmp [ 1 ] = tmp [ 0 ] - lambda * vectors [ i ] ;
2017-11-28 14:03:02 +00:00
2017-11-29 14:04:32 +00:00
auto mu = : : sqrt ( norm2 ( tmp [ 1 ] ) / norm2 ( vectors [ i ] ) ) ;
2017-11-28 14:03:02 +00:00
2018-01-17 16:56:34 +00:00
auto nrm = : : sqrt ( norm2 ( vectors [ i ] ) ) ;
if ( real ( lambda ) > 0 )
positiveOnes + + ;
std : : cout < < GridLogMessage < < std : : scientific < < std : : setprecision ( 2 ) < < std : : setw ( 2 ) < < std : : showpos < < " vector " < < i < < " : "
2018-01-18 11:38:28 +00:00
< < " singular value: " < < lambda < < " , singular vector precision: " < < mu < < " , norm: " < < nrm < < std : : endl ;
2017-11-28 14:03:02 +00:00
}
2018-01-18 11:38:28 +00:00
std : : cout < < GridLogMessage < < std : : scientific < < std : : setprecision ( 2 ) < < std : : setw ( 2 ) < < std : : showpos < < positiveOnes < < " out of "
< < nn < < " vectors were positive " < < std : : endl ;
2017-11-28 14:03:02 +00:00
}
} ;
2018-01-18 11:38:28 +00:00
class myclass : Serializable {
2017-07-21 12:39:03 +01:00
public :
2018-01-18 11:38:28 +00:00
// clang-format off
2017-07-21 12:39:03 +01:00
GRID_SERIALIZABLE_CLASS_MEMBERS ( myclass ,
2018-01-18 11:38:28 +00:00
int , domaindecompose ,
int , domainsize ,
int , coarsegrids ,
int , order ,
int , Ls ,
double , mq ,
double , lo ,
double , hi ,
int , steps ) ;
// clang-format on
2017-07-21 12:39:03 +01:00
myclass ( ) { } ;
} ;
myclass params ;
2018-01-18 11:38:28 +00:00
RealD InverseApproximation ( RealD x ) {
return 1.0 / x ;
2017-07-21 12:39:03 +01:00
}
2018-01-18 11:38:28 +00:00
template < int nbasis > struct CoarseGrids {
2018-01-17 16:56:34 +00:00
public :
// typedef Aggregation<vSpinColourVector,vTComplex,nbasis> Subspace;
// typedef CoarsenedMatrix<vSpinColourVector,vTComplex,nbasis>
// CoarseOperator; typedef typename CoarseOperator::CoarseVector
// CoarseVector;
std : : vector < std : : vector < int > > LattSizes ;
std : : vector < std : : vector < int > > Seeds ;
std : : vector < GridCartesian * > Grids ;
std : : vector < GridParallelRNG > PRNGs ;
2018-01-18 11:38:28 +00:00
CoarseGrids ( std : : vector < std : : vector < int > > const & blockSizes , int coarsegrids = 1 ) {
assert ( blockSizes . size ( ) = = coarsegrids ) ;
2018-01-17 16:56:34 +00:00
std : : cout < < GridLogMessage < < " Constructing " < < coarsegrids < < " CoarseGrids " < < std : : endl ;
2018-01-18 11:38:28 +00:00
for ( int cl = 0 ; cl < coarsegrids ; + + cl ) { // may be a bit ugly and slow but not perf critical
2018-01-17 16:56:34 +00:00
LattSizes . push_back ( { GridDefaultLatt ( ) } ) ;
Seeds . push_back ( std : : vector < int > ( LattSizes [ cl ] . size ( ) ) ) ;
2018-01-18 11:38:28 +00:00
for ( int d = 0 ; d < LattSizes [ cl ] . size ( ) ; + + d ) {
2018-01-17 16:56:34 +00:00
LattSizes [ cl ] [ d ] = LattSizes [ cl ] [ d ] / blockSizes [ cl ] [ d ] ;
2018-01-18 11:38:28 +00:00
Seeds [ cl ] [ d ] = ( cl + 1 ) * LattSizes [ cl ] . size ( ) + d + 1 ;
// calculation unimportant, just to get. e.g., {5, 6, 7, 8} for first coarse level and so on
2018-01-17 16:56:34 +00:00
}
Grids . push_back ( SpaceTimeGrid : : makeFourDimGrid ( LattSizes [ cl ] , GridDefaultSimd ( Nd , vComplex : : Nsimd ( ) ) , GridDefaultMpi ( ) ) ) ;
PRNGs . push_back ( GridParallelRNG ( Grids [ cl ] ) ) ;
PRNGs [ cl ] . SeedFixedIntegers ( Seeds [ cl ] ) ;
std : : cout < < GridLogMessage < < " cl = " < < cl < < " : LattSize = " < < LattSizes [ cl ] < < std : : endl ;
std : : cout < < GridLogMessage < < " cl = " < < cl < < " : Seeds = " < < Seeds [ cl ] < < std : : endl ;
}
}
} ;
// template < class Fobj, class CComplex, int coarseSpins, int nbasis, class Matrix >
// class MultiGridPreconditioner : public LinearFunction< Lattice< Fobj > > {
2018-01-18 11:38:28 +00:00
template < class Fobj , class CComplex , int nbasis , class Matrix > class MultiGridPreconditioner : public LinearFunction < Lattice < Fobj > > {
2017-07-21 12:39:03 +01:00
public :
2018-01-18 11:38:28 +00:00
typedef Aggregation < Fobj , CComplex , nbasis > Aggregates ;
typedef CoarsenedMatrix < Fobj , CComplex , nbasis > CoarseOperator ;
typedef typename Aggregation < Fobj , CComplex , nbasis > : : siteVector siteVector ;
typedef typename Aggregation < Fobj , CComplex , nbasis > : : CoarseScalar CoarseScalar ;
typedef typename Aggregation < Fobj , CComplex , nbasis > : : CoarseVector CoarseVector ;
typedef typename Aggregation < Fobj , CComplex , nbasis > : : CoarseMatrix CoarseMatrix ;
typedef typename Aggregation < Fobj , CComplex , nbasis > : : FineField FineField ;
typedef LinearOperatorBase < FineField > FineOperator ;
Aggregates & _Aggregates ;
CoarseOperator & _CoarseOperator ;
Matrix & _FineMatrix ;
FineOperator & _FineOperator ;
Matrix & _SmootherMatrix ;
FineOperator & _SmootherOperator ;
2017-07-21 12:39:03 +01:00
// Constructor
2018-01-18 11:38:28 +00:00
MultiGridPreconditioner ( Aggregates & Agg ,
CoarseOperator & Coarse ,
FineOperator & Fine ,
Matrix & FineMatrix ,
FineOperator & Smooth ,
Matrix & SmootherMatrix )
: _Aggregates ( Agg )
, _CoarseOperator ( Coarse )
, _FineOperator ( Fine )
, _FineMatrix ( FineMatrix )
, _SmootherOperator ( Smooth )
, _SmootherMatrix ( SmootherMatrix ) { }
2017-07-21 12:39:03 +01:00
void PowerMethod ( const FineField & in ) {
FineField p1 ( in . _grid ) ;
FineField p2 ( in . _grid ) ;
2018-01-18 11:38:28 +00:00
MdagMLinearOperator < Matrix , FineField > fMdagMOp ( _FineMatrix ) ;
2017-07-21 12:39:03 +01:00
2018-01-18 11:38:28 +00:00
p1 = in ;
2017-07-21 12:39:03 +01:00
RealD absp2 ;
2018-01-18 11:38:28 +00:00
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 < < GridLogMessage < < " Power method on mdagm " < < i < < " " < < absp2 / absp1 < < std : : endl ;
p1 = p2 * ( 1.0 / std : : sqrt ( absp2 ) ) ;
2017-07-21 12:39:03 +01:00
}
}
2018-01-18 11:38:28 +00:00
void operator ( ) ( const FineField & in , FineField & out ) {
if ( params . domaindecompose ) {
operatorSAP ( in , out ) ;
} else {
operatorCheby ( in , out ) ;
2017-07-21 12:39:03 +01:00
}
}
////////////////////////////////////////////////////////////////////////
// ADEF2: [PTM+Q] in = [1 - Q A] M in + Q in = Min + Q [ in -A Min]
2018-01-18 11:38:28 +00:00
// ADEF1: [MP+Q ] in = M [1 - A Q] in + Q in
2017-07-21 12:39:03 +01:00
////////////////////////////////////////////////////////////////////////
# if 1
2018-01-18 11:38:28 +00:00
void operatorADEF2 ( const FineField & in , FineField & out ) {
2017-07-21 12:39:03 +01:00
CoarseVector Csrc ( _CoarseOperator . Grid ( ) ) ;
CoarseVector Ctmp ( _CoarseOperator . Grid ( ) ) ;
CoarseVector Csol ( _CoarseOperator . Grid ( ) ) ;
2018-01-18 11:38:28 +00:00
ConjugateGradient < CoarseVector > CG ( 1.0e-10 , 100000 ) ;
ConjugateGradient < FineField > fCG ( 3.0e-2 , 1000 ) ;
2017-07-21 12:39:03 +01:00
2018-01-18 11:38:28 +00:00
HermitianLinearOperator < CoarseOperator , CoarseVector > HermOp ( _CoarseOperator ) ;
MdagMLinearOperator < CoarseOperator , CoarseVector > MdagMOp ( _CoarseOperator ) ;
MdagMLinearOperator < Matrix , FineField > fMdagMOp ( _FineMatrix ) ;
2017-07-21 12:39:03 +01:00
FineField tmp ( in . _grid ) ;
FineField res ( in . _grid ) ;
FineField Min ( in . _grid ) ;
// Monitor completeness of low mode space
2018-01-18 11:38:28 +00:00
_Aggregates . ProjectToSubspace ( Csrc , in ) ;
_Aggregates . PromoteFromSubspace ( Csrc , out ) ;
std : : cout < < GridLogMessage < < " Coarse Grid Preconditioner \n Completeness in: " < < std : : sqrt ( norm2 ( out ) / norm2 ( in ) ) < < std : : endl ;
2017-07-21 12:39:03 +01:00
// [PTM+Q] in = [1 - Q A] M in + Q in = Min + Q [ in -A Min]
2018-01-18 11:38:28 +00:00
_FineOperator . Op ( in , tmp ) ; // this is the G5 herm bit
fCG ( fMdagMOp , tmp , Min ) ; // solves MdagM = g5 M g5M
2017-07-21 12:39:03 +01:00
// Monitor completeness of low mode space
2018-01-18 11:38:28 +00:00
_Aggregates . ProjectToSubspace ( Csrc , Min ) ;
_Aggregates . PromoteFromSubspace ( Csrc , out ) ;
std : : cout < < GridLogMessage < < " Completeness Min: " < < std : : sqrt ( norm2 ( out ) / norm2 ( Min ) ) < < std : : endl ;
_FineOperator . Op ( Min , tmp ) ;
tmp = in - tmp ; // in - A Min
Csol = zero ;
_Aggregates . ProjectToSubspace ( Csrc , tmp ) ;
HermOp . AdjOp ( Csrc , Ctmp ) ; // Normal equations
CG ( MdagMOp , Ctmp , Csol ) ;
HermOp . Op ( Csol , Ctmp ) ;
Ctmp = Ctmp - Csrc ;
std : : cout < < GridLogMessage < < " coarse space true residual " < < std : : sqrt ( norm2 ( Ctmp ) / norm2 ( Csrc ) ) < < std : : endl ;
_Aggregates . PromoteFromSubspace ( Csol , out ) ;
_FineOperator . Op ( out , res ) ;
res = res - tmp ;
std : : cout < < GridLogMessage < < " promoted sol residual " < < std : : sqrt ( norm2 ( res ) / norm2 ( tmp ) ) < < std : : endl ;
_Aggregates . ProjectToSubspace ( Csrc , res ) ;
std : : cout < < GridLogMessage < < " coarse space proj of residual " < < norm2 ( Csrc ) < < std : : endl ;
out = out + Min ; // additive coarse space correction
2017-07-21 12:39:03 +01:00
// out = Min; // no additive coarse space correction
2018-01-18 11:38:28 +00:00
_FineOperator . Op ( out , tmp ) ;
tmp = tmp - in ; // tmp is new residual
2017-07-21 12:39:03 +01:00
2018-01-18 11:38:28 +00:00
std : : cout < < GridLogMessage < < " Preconditioner in " < < norm2 ( in ) < < std : : endl ;
std : : cout < < GridLogMessage < < " Preconditioner out " < < norm2 ( out ) < < std : : endl ;
std : : cout < < GridLogMessage < < " preconditioner thinks residual is " < < std : : sqrt ( norm2 ( tmp ) / norm2 ( in ) ) < < std : : endl ;
2017-07-21 12:39:03 +01:00
}
# endif
2018-01-18 11:38:28 +00:00
// ADEF1: [MP+Q ] in = M [1 - A Q] in + Q in
2017-07-21 12:39:03 +01:00
# if 1
2018-01-18 11:38:28 +00:00
void operatorADEF1 ( const FineField & in , FineField & out ) {
2017-07-21 12:39:03 +01:00
CoarseVector Csrc ( _CoarseOperator . Grid ( ) ) ;
CoarseVector Ctmp ( _CoarseOperator . Grid ( ) ) ;
2018-01-18 11:38:28 +00:00
CoarseVector Csol ( _CoarseOperator . Grid ( ) ) ;
Csol = zero ;
2017-07-21 12:39:03 +01:00
2018-01-18 11:38:28 +00:00
ConjugateGradient < CoarseVector > CG ( 1.0e-10 , 100000 ) ;
ConjugateGradient < FineField > fCG ( 3.0e-2 , 1000 ) ;
2017-07-21 12:39:03 +01:00
2018-01-18 11:38:28 +00:00
HermitianLinearOperator < CoarseOperator , CoarseVector > HermOp ( _CoarseOperator ) ;
MdagMLinearOperator < CoarseOperator , CoarseVector > MdagMOp ( _CoarseOperator ) ;
ShiftedMdagMLinearOperator < Matrix , FineField > fMdagMOp ( _FineMatrix , 0.1 ) ;
2017-07-21 12:39:03 +01:00
FineField tmp ( in . _grid ) ;
FineField res ( in . _grid ) ;
FineField Qin ( in . _grid ) ;
// Monitor completeness of low mode space
// _Aggregates.ProjectToSubspace (Csrc,in);
// _Aggregates.PromoteFromSubspace(Csrc,out);
// std::cout<<GridLogMessage<<"Coarse Grid Preconditioner\nCompleteness in: "<<std::sqrt(norm2(out)/norm2(in))<<std::endl;
2018-01-18 11:38:28 +00:00
_Aggregates . ProjectToSubspace ( Csrc , in ) ;
HermOp . AdjOp ( Csrc , Ctmp ) ; // Normal equations
CG ( MdagMOp , Ctmp , Csol ) ;
_Aggregates . PromoteFromSubspace ( Csol , Qin ) ;
2017-07-21 12:39:03 +01:00
// Qin=0;
2018-01-18 11:38:28 +00:00
_FineOperator . Op ( Qin , tmp ) ; // A Q in
tmp = in - tmp ; // in - A Q in
2017-07-21 12:39:03 +01:00
2018-01-18 11:38:28 +00:00
_FineOperator . Op ( tmp , res ) ; // this is the G5 herm bit
fCG ( fMdagMOp , res , out ) ; // solves MdagM = g5 M g5M
2017-07-21 12:39:03 +01:00
out = out + Qin ;
2018-01-18 11:38:28 +00:00
_FineOperator . Op ( out , tmp ) ;
tmp = tmp - in ; // tmp is new residual
2017-07-21 12:39:03 +01:00
2018-01-18 11:38:28 +00:00
std : : cout < < GridLogMessage < < " preconditioner thinks residual is " < < std : : sqrt ( norm2 ( tmp ) / norm2 ( in ) ) < < std : : endl ;
2017-07-21 12:39:03 +01:00
}
# endif
2018-01-18 11:38:28 +00:00
void SAP ( const FineField & src , FineField & psi ) {
Lattice < iScalar < vInteger > > coor ( src . _grid ) ;
Lattice < iScalar < vInteger > > subset ( src . _grid ) ;
2017-07-21 12:39:03 +01:00
FineField r ( src . _grid ) ;
2018-01-18 11:38:28 +00:00
FineField zz ( src . _grid ) ;
zz = zero ;
2017-07-21 12:39:03 +01:00
FineField vec1 ( src . _grid ) ;
FineField vec2 ( src . _grid ) ;
2018-01-18 11:38:28 +00:00
const Integer block = params . domainsize ;
2017-07-21 12:39:03 +01:00
2018-01-18 11:38:28 +00:00
subset = zero ;
for ( int mu = 0 ; mu < Nd ; mu + + ) {
LatticeCoordinate ( coor , mu + 1 ) ;
coor = div ( coor , block ) ;
subset = subset + coor ;
2017-07-21 12:39:03 +01:00
}
2018-01-18 11:38:28 +00:00
subset = mod ( subset , ( Integer ) 2 ) ;
ShiftedMdagMLinearOperator < Matrix , FineField > fMdagMOp ( _SmootherMatrix , 0.0 ) ;
Chebyshev < FineField > Cheby ( params . lo , params . hi , params . order , InverseApproximation ) ;
2017-07-21 12:39:03 +01:00
RealD resid ;
2018-01-18 11:38:28 +00:00
for ( int i = 0 ; i < params . steps ; i + + ) {
2017-07-21 12:39:03 +01:00
// Even domain residual
2018-01-18 11:38:28 +00:00
_FineOperator . Op ( psi , vec1 ) ; // this is the G5 herm bit
r = src - vec1 ;
resid = norm2 ( r ) / norm2 ( src ) ;
std : : cout < < " SAP " < < i < < " resid " < < resid < < std : : endl ;
2017-07-21 12:39:03 +01:00
// Even domain solve
2018-01-18 11:38:28 +00:00
r = where ( subset = = ( Integer ) 0 , r , zz ) ;
_SmootherOperator . AdjOp ( r , vec1 ) ;
Cheby ( fMdagMOp , vec1 , vec2 ) ; // solves MdagM = g5 M g5M
psi = psi + vec2 ;
2017-07-21 12:39:03 +01:00
// Odd domain residual
2018-01-18 11:38:28 +00:00
_FineOperator . Op ( psi , vec1 ) ; // this is the G5 herm bit
r = src - vec1 ;
r = where ( subset = = ( Integer ) 1 , r , zz ) ;
2017-07-21 12:39:03 +01:00
2018-01-18 11:38:28 +00:00
resid = norm2 ( r ) / norm2 ( src ) ;
std : : cout < < " SAP " < < i < < " resid " < < resid < < std : : endl ;
2017-07-21 12:39:03 +01:00
2018-01-18 11:38:28 +00:00
// Odd domain solve
_SmootherOperator . AdjOp ( r , vec1 ) ;
Cheby ( fMdagMOp , vec1 , vec2 ) ; // solves MdagM = g5 M g5M
psi = psi + vec2 ;
_FineOperator . Op ( psi , vec1 ) ; // this is the G5 herm bit
r = src - vec1 ;
resid = norm2 ( r ) / norm2 ( src ) ;
std : : cout < < " SAP " < < i < < " resid " < < resid < < std : : endl ;
2017-07-21 12:39:03 +01:00
}
} ;
2018-01-18 11:38:28 +00:00
void SmootherTest ( const FineField & in ) {
2017-07-21 12:39:03 +01:00
FineField vec1 ( in . _grid ) ;
FineField vec2 ( in . _grid ) ;
2018-01-18 11:38:28 +00:00
RealD lo [ 3 ] = { 0.5 , 1.0 , 2.0 } ;
2017-07-21 12:39:03 +01:00
// MdagMLinearOperator<Matrix,FineField> fMdagMOp(_FineMatrix);
2018-01-18 11:38:28 +00:00
ShiftedMdagMLinearOperator < Matrix , FineField > fMdagMOp ( _SmootherMatrix , 0.0 ) ;
2017-07-21 12:39:03 +01:00
2018-01-18 11:38:28 +00:00
RealD Ni , r ;
2017-07-21 12:39:03 +01:00
Ni = norm2 ( in ) ;
2018-01-18 11:38:28 +00:00
for ( int ilo = 0 ; ilo < 3 ; ilo + + ) {
for ( int ord = 5 ; ord < 50 ; ord * = 2 ) {
2017-07-21 12:39:03 +01:00
2018-01-18 11:38:28 +00:00
_SmootherOperator . AdjOp ( in , vec1 ) ;
2017-07-21 12:39:03 +01:00
2018-01-18 11:38:28 +00:00
Chebyshev < FineField > Cheby ( lo [ ilo ] , 70.0 , ord , InverseApproximation ) ;
Cheby ( fMdagMOp , vec1 , vec2 ) ; // solves MdagM = g5 M g5M
2017-07-21 12:39:03 +01:00
2018-01-18 11:38:28 +00:00
_FineOperator . Op ( vec2 , vec1 ) ; // this is the G5 herm bit
vec1 = in - vec1 ; // tmp = in - A Min
r = norm2 ( vec1 ) ;
std : : cout < < GridLogMessage < < " Smoother resid " < < std : : sqrt ( r / Ni ) < < std : : endl ;
2017-07-21 12:39:03 +01:00
}
}
}
2018-01-18 11:38:28 +00:00
void operatorCheby ( const FineField & in , FineField & out ) {
2017-07-21 12:39:03 +01:00
CoarseVector Csrc ( _CoarseOperator . Grid ( ) ) ;
CoarseVector Ctmp ( _CoarseOperator . Grid ( ) ) ;
2018-01-18 11:38:28 +00:00
CoarseVector Csol ( _CoarseOperator . Grid ( ) ) ;
Csol = zero ;
2017-07-21 12:39:03 +01:00
2018-01-18 11:38:28 +00:00
ConjugateGradient < CoarseVector > CG ( 3.0e-3 , 100000 ) ;
2017-07-21 12:39:03 +01:00
// ConjugateGradient<FineField> fCG(3.0e-2,1000);
2018-01-18 11:38:28 +00:00
HermitianLinearOperator < CoarseOperator , CoarseVector > HermOp ( _CoarseOperator ) ;
MdagMLinearOperator < CoarseOperator , CoarseVector > MdagMOp ( _CoarseOperator ) ;
2017-07-21 12:39:03 +01:00
// MdagMLinearOperator<Matrix,FineField> fMdagMOp(_FineMatrix);
2018-01-18 11:38:28 +00:00
ShiftedMdagMLinearOperator < Matrix , FineField > fMdagMOp ( _SmootherMatrix , 0.0 ) ;
2017-07-21 12:39:03 +01:00
FineField vec1 ( in . _grid ) ;
FineField vec2 ( in . _grid ) ;
// Chebyshev<FineField> Cheby (0.5,70.0,30,InverseApproximation);
// Chebyshev<FineField> ChebyAccu(0.5,70.0,30,InverseApproximation);
2018-01-18 11:38:28 +00:00
Chebyshev < FineField > Cheby ( params . lo , params . hi , params . order , InverseApproximation ) ;
Chebyshev < FineField > ChebyAccu ( params . lo , params . hi , params . order , InverseApproximation ) ;
2017-07-21 12:39:03 +01:00
// Cheby.JacksonSmooth();
// ChebyAccu.JacksonSmooth();
// _Aggregates.ProjectToSubspace (Csrc,in);
// _Aggregates.PromoteFromSubspace(Csrc,out);
// std::cout<<GridLogMessage<<"Completeness: "<<std::sqrt(norm2(out)/norm2(in))<<std::endl;
2018-01-18 11:38:28 +00:00
2017-07-21 12:39:03 +01:00
// ofstream fout("smoother");
// Cheby.csv(fout);
// V11 multigrid.
// Use a fixed chebyshev and hope hermiticity helps.
// To make a working smoother for indefinite operator
// must multiply by "Mdag" (ouch loses all low mode content)
// and apply to poly approx of (mdagm)^-1.
// so that we end up with an odd polynomial.
RealD Ni = norm2 ( in ) ;
2018-01-18 11:38:28 +00:00
_SmootherOperator . AdjOp ( in , vec1 ) ; // this is the G5 herm bit
ChebyAccu ( fMdagMOp , vec1 , out ) ; // solves MdagM = g5 M g5M
2017-07-21 12:39:03 +01:00
2018-01-18 11:38:28 +00:00
std : : cout < < GridLogMessage < < " Smoother norm " < < norm2 ( out ) < < std : : endl ;
2017-07-21 12:39:03 +01:00
// Update with residual for out
2018-01-18 11:38:28 +00:00
_FineOperator . Op ( out , vec1 ) ; // this is the G5 herm bit
vec1 = in - vec1 ; // tmp = in - A Min
2017-07-21 12:39:03 +01:00
RealD r = norm2 ( vec1 ) ;
2018-01-18 11:38:28 +00:00
std : : cout < < GridLogMessage < < " Smoother resid " < < std : : sqrt ( r / Ni ) < < " " < < r < < " " < < Ni < < std : : endl ;
_Aggregates . ProjectToSubspace ( Csrc , vec1 ) ;
HermOp . AdjOp ( Csrc , Ctmp ) ; // Normal equations
CG ( MdagMOp , Ctmp , Csol ) ;
_Aggregates . PromoteFromSubspace ( Csol , vec1 ) ; // Ass^{-1} [in - A Min]_s
// Q = Q[in - A Min]
out = out + vec1 ;
2017-07-21 12:39:03 +01:00
// Three preconditioner smoothing -- hermitian if C3 = C1
// Recompute error
2018-01-18 11:38:28 +00:00
_FineOperator . Op ( out , vec1 ) ; // this is the G5 herm bit
vec1 = in - vec1 ; // tmp = in - A Min
r = norm2 ( vec1 ) ;
2017-07-21 12:39:03 +01:00
2018-01-18 11:38:28 +00:00
std : : cout < < GridLogMessage < < " Coarse resid " < < std : : sqrt ( r / Ni ) < < std : : endl ;
2017-07-21 12:39:03 +01:00
// Reapply smoother
2018-01-18 11:38:28 +00:00
_SmootherOperator . Op ( vec1 , vec2 ) ; // this is the G5 herm bit
ChebyAccu ( fMdagMOp , vec2 , vec1 ) ; // solves MdagM = g5 M g5M
2017-07-21 12:39:03 +01:00
2018-01-18 11:38:28 +00:00
out = out + vec1 ;
vec1 = in - vec1 ; // tmp = in - A Min
r = norm2 ( vec1 ) ;
std : : cout < < GridLogMessage < < " Smoother resid " < < std : : sqrt ( r / Ni ) < < std : : endl ;
2017-07-21 12:39:03 +01:00
}
2018-01-18 11:38:28 +00:00
void operatorSAP ( const FineField & in , FineField & out ) {
2017-07-21 12:39:03 +01:00
CoarseVector Csrc ( _CoarseOperator . Grid ( ) ) ;
CoarseVector Ctmp ( _CoarseOperator . Grid ( ) ) ;
2018-01-18 11:38:28 +00:00
CoarseVector Csol ( _CoarseOperator . Grid ( ) ) ;
Csol = zero ;
2017-07-21 12:39:03 +01:00
2018-01-18 11:38:28 +00:00
ConjugateGradient < CoarseVector > CG ( 1.0e-3 , 100000 ) ;
2017-07-21 12:39:03 +01:00
2018-01-18 11:38:28 +00:00
HermitianLinearOperator < CoarseOperator , CoarseVector > HermOp ( _CoarseOperator ) ;
MdagMLinearOperator < CoarseOperator , CoarseVector > MdagMOp ( _CoarseOperator ) ;
2017-07-21 12:39:03 +01:00
FineField vec1 ( in . _grid ) ;
FineField vec2 ( in . _grid ) ;
2018-01-18 11:38:28 +00:00
_Aggregates . ProjectToSubspace ( Csrc , in ) ;
_Aggregates . PromoteFromSubspace ( Csrc , out ) ;
std : : cout < < GridLogMessage < < " Completeness: " < < std : : sqrt ( norm2 ( out ) / norm2 ( in ) ) < < std : : endl ;
2017-07-21 12:39:03 +01:00
// To make a working smoother for indefinite operator
// must multiply by "Mdag" (ouch loses all low mode content)
// and apply to poly approx of (mdagm)^-1.
// so that we end up with an odd polynomial.
2018-01-18 11:38:28 +00:00
SAP ( in , out ) ;
2017-07-21 12:39:03 +01:00
// Update with residual for out
2018-01-18 11:38:28 +00:00
_FineOperator . Op ( out , vec1 ) ; // this is the G5 herm bit
vec1 = in - vec1 ; // tmp = in - A Min
2017-07-21 12:39:03 +01:00
2018-01-18 11:38:28 +00:00
RealD r = norm2 ( vec1 ) ;
2017-07-21 12:39:03 +01:00
RealD Ni = norm2 ( in ) ;
2018-01-18 11:38:28 +00:00
std : : cout < < GridLogMessage < < " SAP resid " < < std : : sqrt ( r / Ni ) < < " " < < r < < " " < < Ni < < std : : endl ;
_Aggregates . ProjectToSubspace ( Csrc , vec1 ) ;
HermOp . AdjOp ( Csrc , Ctmp ) ; // Normal equations
CG ( MdagMOp , Ctmp , Csol ) ;
_Aggregates . PromoteFromSubspace ( Csol , vec1 ) ; // Ass^{-1} [in - A Min]_s
// Q = Q[in - A Min]
out = out + vec1 ;
2017-07-21 12:39:03 +01:00
// Three preconditioner smoothing -- hermitian if C3 = C1
// Recompute error
2018-01-18 11:38:28 +00:00
_FineOperator . Op ( out , vec1 ) ; // this is the G5 herm bit
vec1 = in - vec1 ; // tmp = in - A Min
r = norm2 ( vec1 ) ;
2017-07-21 12:39:03 +01:00
2018-01-18 11:38:28 +00:00
std : : cout < < GridLogMessage < < " Coarse resid " < < std : : sqrt ( r / Ni ) < < std : : endl ;
2017-07-21 12:39:03 +01:00
// Reapply smoother
2018-01-18 11:38:28 +00:00
SAP ( vec1 , vec2 ) ;
out = out + vec2 ;
2017-07-21 12:39:03 +01:00
// Update with residual for out
2018-01-18 11:38:28 +00:00
_FineOperator . Op ( out , vec1 ) ; // this is the G5 herm bit
vec1 = in - vec1 ; // tmp = in - A Min
2017-07-21 12:39:03 +01:00
2018-01-18 11:38:28 +00:00
r = norm2 ( vec1 ) ;
2017-07-21 12:39:03 +01:00
Ni = norm2 ( in ) ;
2018-01-18 11:38:28 +00:00
std : : cout < < GridLogMessage < < " SAP resid(post) " < < std : : sqrt ( r / Ni ) < < " " < < r < < " " < < Ni < < std : : endl ;
2017-07-21 12:39:03 +01:00
}
} ;
2018-01-18 11:38:28 +00:00
struct MGParams {
std : : vector < std : : vector < int > > blockSizes ;
const int nbasis ;
MGParams ( )
: blockSizes ( { { 1 , 1 , 1 , 2 } } )
// : blockSizes({{1,1,1,2}, {1,1,1,2}})
// : blockSizes({{1,1,1,2}, {1,1,1,2}, {1,1,1,2}})
, nbasis ( 20 ) { }
2018-01-17 16:56:34 +00:00
} ;
2018-01-18 11:38:28 +00:00
int main ( int argc , char * * argv ) {
Grid_init ( & argc , & argv ) ;
2017-07-21 12:39:03 +01:00
2018-01-18 11:38:28 +00:00
params . domainsize = 1 ;
params . coarsegrids = 1 ;
2018-01-17 16:56:34 +00:00
params . domaindecompose = 0 ;
2018-01-18 11:38:28 +00:00
params . order = 30 ;
params . Ls = 1 ;
2018-01-17 16:56:34 +00:00
// params.mq = .13;
2018-01-18 11:38:28 +00:00
params . mq = .5 ;
params . lo = 0.5 ;
params . hi = 70.0 ;
2017-07-21 12:39:03 +01:00
params . steps = 1 ;
2018-01-17 16:56:34 +00:00
auto mgp = MGParams { } ;
2017-07-21 12:39:03 +01:00
2018-01-17 16:56:34 +00:00
std : : cout < < GridLogMessage < < " ************************************************** " < < std : : endl ;
std : : cout < < GridLogMessage < < " Params: " < < std : : endl ;
std : : cout < < GridLogMessage < < " ************************************************** " < < std : : endl ;
2017-07-21 12:39:03 +01:00
2018-01-17 16:56:34 +00:00
std : : cout < < params < < std : : endl ;
2017-07-21 12:39:03 +01:00
2018-01-17 16:56:34 +00:00
std : : cout < < GridLogMessage < < " ************************************************** " < < std : : endl ;
std : : cout < < GridLogMessage < < " Set up some fine level stuff: " < < std : : endl ;
std : : cout < < GridLogMessage < < " ************************************************** " < < std : : endl ;
2017-07-21 12:39:03 +01:00
2018-01-18 11:38:28 +00:00
GridCartesian * FGrid = SpaceTimeGrid : : makeFourDimGrid ( GridDefaultLatt ( ) , GridDefaultSimd ( Nd , vComplex : : Nsimd ( ) ) , GridDefaultMpi ( ) ) ;
GridRedBlackCartesian * FrbGrid = SpaceTimeGrid : : makeFourDimRedBlackGrid ( FGrid ) ;
2017-07-21 12:39:03 +01:00
2018-01-18 11:38:28 +00:00
std : : vector < int > fSeeds ( { 1 , 2 , 3 , 4 } ) ;
GridParallelRNG fPRNG ( FGrid ) ;
fPRNG . SeedFixedIntegers ( fSeeds ) ;
2017-07-21 12:39:03 +01:00
Gamma g5 ( Gamma : : Algebra : : Gamma5 ) ;
2018-01-18 11:38:28 +00:00
// clang-format off
LatticeFermion src ( FGrid ) ; gaussian ( fPRNG , src ) ; // src=src + g5 * src;
LatticeFermion result ( FGrid ) ; result = zero ;
LatticeFermion ref ( FGrid ) ; ref = zero ;
LatticeFermion tmp ( FGrid ) ;
LatticeFermion err ( FGrid ) ;
LatticeGaugeField Umu ( FGrid ) ; SU3 : : HotConfiguration ( fPRNG , Umu ) ;
LatticeGaugeField UmuDD ( FGrid ) ;
LatticeColourMatrix U ( FGrid ) ;
LatticeColourMatrix zz ( FGrid ) ;
// clang-format on
if ( params . domaindecompose ) {
Lattice < iScalar < vInteger > > coor ( FGrid ) ;
zz = zero ;
for ( int mu = 0 ; mu < Nd ; mu + + ) {
LatticeCoordinate ( coor , mu ) ;
U = PeekIndex < LorentzIndex > ( Umu , mu ) ;
U = where ( mod ( coor , params . domainsize ) = = ( Integer ) 0 , zz , U ) ;
PokeIndex < LorentzIndex > ( UmuDD , U , mu ) ;
2017-07-21 12:39:03 +01:00
}
2018-01-18 11:38:28 +00:00
} else {
2017-07-21 12:39:03 +01:00
UmuDD = Umu ;
}
2018-01-18 11:38:28 +00:00
RealD mass = params . mq ;
2017-07-21 12:39:03 +01:00
2018-01-17 16:56:34 +00:00
std : : cout < < GridLogMessage < < " ************************************************** " < < std : : endl ;
std : : cout < < GridLogMessage < < " Set up some coarser levels stuff: " < < std : : endl ;
std : : cout < < GridLogMessage < < " ************************************************** " < < std : : endl ;
2017-07-21 12:39:03 +01:00
2018-01-18 11:38:28 +00:00
std : : vector < std : : vector < int > > blockSizes ( { { 1 , 1 , 1 , 2 } } ) ; // corresponds to two level algorithm
// std::vector<std::vector<int>> blockSizes({{1, 1, 1, 2}, // corresponds to three level algorithm
// {1, 1, 1, 2}});
2018-01-17 16:56:34 +00:00
const int nbasis = 20 ; // we fix the number of test vector to the same
2018-01-18 11:38:28 +00:00
// number on every level for now
2018-01-17 16:56:34 +00:00
// // some stuff we need for every coarser lattice
// std::vector<std::vector<int>> cLattSizes({GridDefaultLatt()});;
// std::vector<GridCartesian *> cGrids(params.coarsegrids);
// std::vector<std::vector<int>> cSeeds({ {5,6,7,8} });
// std::vector<GridParallelRNG> cPRNGs;(params.coarsegrids);
// assert(cLattSizes.size() == params.coarsegrids);
// assert( cGrids.size() == params.coarsegrids);
// assert( cSeeds.size() == params.coarsegrids);
// assert( cPRNGs.size() == params.coarsegrids);
// for(int cl=0;cl<cLattSizes.size();cl++){
// for(int d=0;d<cLattSizes[cl].size();d++){
// // std::cout << cl << " " << d << " " << cLattSizes[cl][d] << " " <<
// blockSizes[cl][d] << std::endl; cLattSizes[cl][d] =
// cLattSizes[cl][d]/blockSizes[cl][d];
// }
// cGrids[cl] = SpaceTimeGrid::makeFourDimGrid(cLattSizes[cl],
// GridDefaultSimd(Nd,vComplex::Nsimd()),GridDefaultMpi());;
// // std::cout << cLattSizes[cl] << std::endl;
// }
2018-01-18 11:38:28 +00:00
// GridParallelRNG cPRNG(CGrid); cPRNG.SeedFixedIntegers(cSeeds);
CoarseGrids < nbasis > cGrids ( blockSizes ) ;
2018-01-17 16:56:34 +00:00
2018-01-18 11:38:28 +00:00
// assert(0);
2018-01-17 16:56:34 +00:00
2018-01-18 11:38:28 +00:00
std : : cout < < GridLogMessage < < " ************************************************** " < < std : : endl ;
std : : cout < < GridLogMessage < < " Building the wilson operator on the fine grid " < < std : : endl ;
std : : cout < < GridLogMessage < < " ************************************************** " < < std : : endl ;
2017-07-21 12:39:03 +01:00
2018-01-18 11:38:28 +00:00
WilsonFermionR Dw ( Umu , * FGrid , * FrbGrid , mass ) ;
WilsonFermionR DwDD ( UmuDD , * FGrid , * FrbGrid , mass ) ;
2017-07-21 12:39:03 +01:00
2018-01-18 11:38:28 +00:00
std : : cout < < GridLogMessage < < " ************************************************** " < < std : : endl ;
std : : cout < < GridLogMessage < < " Some typedefs " < < std : : endl ;
std : : cout < < GridLogMessage < < " ************************************************** " < < std : : endl ;
2018-01-17 16:56:34 +00:00
2018-01-18 11:38:28 +00:00
typedef Aggregation < vSpinColourVector , vTComplex , nbasis > Subspace ;
typedef CoarsenedMatrix < vSpinColourVector , vTComplex , nbasis > CoarseOperator ;
typedef CoarseOperator : : CoarseVector CoarseVector ;
typedef TestVectorAnalyzer < LatticeFermion , nbasis > TVA ;
2018-01-17 16:56:34 +00:00
// typedef Aggregation<vSpinColourVector,vTComplex,1,nbasis> Subspace;
// typedef CoarsenedMatrix<vSpinColourVector,vTComplex,1,nbasis> CoarseOperator;
// typedef CoarseOperator::CoarseVector CoarseVector;
// typedef CoarseOperator::CoarseG5PVector
// CoarseG5PVector; // P = preserving typedef
// CoarseOperator::CoarseG5PMatrix CoarseG5PMatrix;
# if 1
2018-01-18 11:38:28 +00:00
// clang-format off
2018-01-17 16:56:34 +00:00
std : : cout < < std : : endl ;
std : : cout < < " type_name<decltype(vTComplex{})>() = " < < type_name < decltype ( vTComplex { } ) > ( ) < < std : : endl ;
std : : cout < < " type_name<GridTypeMapper<vTComplex>::scalar_type>() = " < < type_name < GridTypeMapper < vTComplex > : : scalar_type > ( ) < < std : : endl ;
std : : cout < < " type_name<GridTypeMapper<vTComplex>::vector_type>() = " < < type_name < GridTypeMapper < vTComplex > : : vector_type > ( ) < < std : : endl ;
std : : cout < < " type_name<GridTypeMapper<vTComplex>::vector_typeD>() = " < < type_name < GridTypeMapper < vTComplex > : : vector_typeD > ( ) < < std : : endl ;
std : : cout < < " type_name<GridTypeMapper<vTComplex>::tensor_reduced>() = " < < type_name < GridTypeMapper < vTComplex > : : tensor_reduced > ( ) < < std : : endl ;
std : : cout < < " type_name<GridTypeMapper<vTComplex>::scalar_object>() = " < < type_name < GridTypeMapper < vTComplex > : : scalar_object > ( ) < < std : : endl ;
std : : cout < < " type_name<GridTypeMapper<vTComplex>::Complexified>() = " < < type_name < GridTypeMapper < vTComplex > : : Complexified > ( ) < < std : : endl ;
std : : cout < < " type_name<GridTypeMapper<vTComplex>::Realified>() = " < < type_name < GridTypeMapper < vTComplex > : : Realified > ( ) < < std : : endl ;
std : : cout < < " type_name<GridTypeMapper<vTComplex>::DoublePrecision>() = " < < type_name < GridTypeMapper < vTComplex > : : DoublePrecision > ( ) < < std : : endl ;
std : : cout < < std : : endl ;
std : : cout < < std : : endl ;
std : : cout < < " type_name<decltype(TComplex{})>() = " < < type_name < decltype ( TComplex { } ) > ( ) < < std : : endl ;
std : : cout < < " type_name<GridTypeMapper<TComplex>::scalar_type>() = " < < type_name < GridTypeMapper < TComplex > : : scalar_type > ( ) < < std : : endl ;
std : : cout < < " type_name<GridTypeMapper<TComplex>::vector_type>() = " < < type_name < GridTypeMapper < TComplex > : : vector_type > ( ) < < std : : endl ;
std : : cout < < " type_name<GridTypeMapper<TComplex>::vector_typeD>() = " < < type_name < GridTypeMapper < TComplex > : : vector_typeD > ( ) < < std : : endl ;
std : : cout < < " type_name<GridTypeMapper<TComplex>::tensor_reduced>() = " < < type_name < GridTypeMapper < TComplex > : : tensor_reduced > ( ) < < std : : endl ;
std : : cout < < " type_name<GridTypeMapper<TComplex>::scalar_object>() = " < < type_name < GridTypeMapper < TComplex > : : scalar_object > ( ) < < std : : endl ;
std : : cout < < " type_name<GridTypeMapper<TComplex>::Complexified>() = " < < type_name < GridTypeMapper < TComplex > : : Complexified > ( ) < < std : : endl ;
std : : cout < < " type_name<GridTypeMapper<TComplex>::Realified>() = " < < type_name < GridTypeMapper < TComplex > : : Realified > ( ) < < std : : endl ;
std : : cout < < " type_name<GridTypeMapper<TComplex>::DoublePrecision>() = " < < type_name < GridTypeMapper < TComplex > : : DoublePrecision > ( ) < < std : : endl ;
std : : cout < < std : : endl ;
2018-01-18 11:38:28 +00:00
// clang-format on
2018-01-17 16:56:34 +00:00
# endif
2017-07-21 12:39:03 +01:00
2018-01-18 11:38:28 +00:00
std : : cout < < GridLogMessage < < " ************************************************** " < < std : : endl ;
std : : cout < < GridLogMessage < < " Calling Aggregation class to build subspaces " < < std : : endl ;
std : : cout < < GridLogMessage < < " ************************************************** " < < std : : endl ;
2017-07-21 12:39:03 +01:00
2017-11-28 14:03:02 +00:00
// • TODO: need some way to run the smoother on the "test vectors" for a few
// times before constructing the subspace from them
// • Maybe an application for an mrhs (true mrhs, no block) smoother?
// • In WMG, the vectors are normalized but not orthogonalized, but here they
// are constructed randomly and then orthogonalized (rather orthonormalized) against each other
2018-01-18 11:38:28 +00:00
MdagMLinearOperator < WilsonFermionR , LatticeFermion > HermOp ( Dw ) ;
Subspace Aggregates ( cGrids . Grids [ 0 ] , FGrid , 0 ) ;
assert ( ( nbasis & 0x1 ) = = 0 ) ;
int nb = nbasis / 2 ;
std : : cout < < GridLogMessage < < " nbasis/2 = " < < nb < < std : : endl ;
2017-07-21 12:39:03 +01:00
2018-01-17 16:56:34 +00:00
Aggregates . CreateSubspace ( fPRNG , HermOp /*, nb */ ) ; // Don't specify nb to see the orthogonalization check
2017-11-28 14:03:02 +00:00
2018-01-17 16:56:34 +00:00
TVA testVectorAnalyzer ;
testVectorAnalyzer ( HermOp , Aggregates . subspace , nb ) ;
2017-07-21 12:39:03 +01:00
2018-01-18 11:38:28 +00:00
for ( int n = 0 ; n < nb ; n + + ) {
// multiply with g5 normally instead of G5R5 since this specific to DWF
Aggregates . subspace [ n + nb ] = g5 * Aggregates . subspace [ n ] ;
std : : cout < < GridLogMessage < < n < < " subspace " < < norm2 ( Aggregates . subspace [ n + nb ] ) < < " " < < norm2 ( Aggregates . subspace [ n ] )
< < std : : endl ;
2017-07-21 12:39:03 +01:00
}
2018-01-18 11:38:28 +00:00
for ( int n = 0 ; n < nbasis ; n + + ) {
std : : cout < < GridLogMessage < < " vec[ " < < n < < " ] = " < < norm2 ( Aggregates . subspace [ n ] ) < < std : : endl ;
2017-07-21 12:39:03 +01:00
}
2017-11-28 14:03:02 +00:00
// tva(HermOp, Aggregates.subspace);
2018-01-17 16:56:34 +00:00
Aggregates . CheckOrthogonal ( ) ;
2017-11-28 14:03:02 +00:00
testVectorAnalyzer ( HermOp , Aggregates . subspace ) ;
2018-01-18 11:38:28 +00:00
result = zero ;
2017-11-24 09:43:34 +00:00
2018-01-18 11:38:28 +00:00
std : : cout < < GridLogMessage < < " ************************************************** " < < std : : endl ;
std : : cout < < GridLogMessage < < " Building coarse representation of Dirac operator " < < std : : endl ;
std : : cout < < GridLogMessage < < " ************************************************** " < < std : : endl ;
2017-07-21 12:39:03 +01:00
2018-01-18 11:38:28 +00:00
// using Gamma5HermitianLinearOperator corresponds to working with H = g5 * D
Gamma5HermitianLinearOperator < WilsonFermionR , LatticeFermion > HermIndefOp ( Dw ) ;
Gamma5HermitianLinearOperator < WilsonFermionR , LatticeFermion > HermIndefOpDD ( DwDD ) ;
CoarsenedMatrix < vSpinColourVector , vTComplex , nbasis > CoarseOp ( * cGrids . Grids [ 0 ] ) ;
2018-01-17 16:56:34 +00:00
CoarseOp . CoarsenOperator ( FGrid , HermIndefOp , Aggregates ) ; // uses only linop.OpDiag & linop.OpDir
2017-07-21 12:39:03 +01:00
2018-01-17 16:56:34 +00:00
std : : cout < < GridLogMessage < < " ************************************************** " < < std : : endl ;
std : : cout < < GridLogMessage < < " Building coarse vectors " < < std : : endl ;
std : : cout < < GridLogMessage < < " ************************************************** " < < std : : endl ;
2017-07-21 12:39:03 +01:00
2018-01-18 11:38:28 +00:00
CoarseVector c_src ( cGrids . Grids [ 0 ] ) ;
CoarseVector c_res ( cGrids . Grids [ 0 ] ) ;
gaussian ( cGrids . PRNGs [ 0 ] , c_src ) ;
c_res = zero ;
2017-07-21 12:39:03 +01:00
2018-01-18 11:38:28 +00:00
std : : cout < < " type_name<decltype(c_src)>() = " < < type_name < decltype ( c_src ) > ( ) < < std : : endl ;
2018-01-17 16:56:34 +00:00
// c_res = g5 * c_src;
std : : cout < < GridLogMessage < < " ************************************************** " < < std : : endl ;
std : : cout < < GridLogMessage < < " Solving posdef-MR on coarse space " < < std : : endl ;
std : : cout < < GridLogMessage < < " ************************************************** " < < std : : endl ;
2017-11-24 09:43:34 +00:00
2018-01-18 11:38:28 +00:00
MdagMLinearOperator < CoarseOperator , CoarseVector > PosdefLdop ( CoarseOp ) ;
MinimalResidual < CoarseVector > MR ( 5.0e-2 , 100 , false ) ;
ConjugateGradient < CoarseVector > CG ( 5.0e-2 , 100 , false ) ;
2017-11-24 09:43:34 +00:00
2018-01-17 16:56:34 +00:00
MR ( PosdefLdop , c_src , c_res ) ;
gaussian ( cGrids . PRNGs [ 0 ] , c_src ) ;
c_res = zero ;
CG ( PosdefLdop , c_src , c_res ) ;
std : : cout < < GridLogMessage < < " ************************************************** " < < std : : endl ;
std : : cout < < GridLogMessage < < " Dummy testing for building second coarse level " < < std : : endl ;
std : : cout < < GridLogMessage < < " ************************************************** " < < std : : endl ;
// typedef Aggregation< CoarseVector, vTComplex, nbasis > SubspaceAgain;
// SubspaceAgain AggregatesCoarsenedAgain(cGrids.Grids[1], cGrids.Grids[0], 0);
// AggregatesCoarsenedAgain.CreateSubspace(cGrids.PRNGs[0], PosdefLdop);
// for(int n=0;n<nb;n++){
// AggregatesCoarsenedAgain.subspace[n+nb] = g5 * AggregatesCoarsenedAgain.subspace[n]; // multiply with g5 normally instead of G5R5 since this specific to DWF
// std::cout<<GridLogMessage<<n<<" subspace "<<norm2(AggregatesCoarsenedAgain.subspace[n+nb])<<" "<<norm2(AggregatesCoarsenedAgain.subspace[n]) <<std::endl;
// }
// for(int n=0;n<nbasis;n++){
// std::cout<<GridLogMessage << "vec["<<n<<"] = "<<norm2(AggregatesCoarsenedAgain.subspace[n]) <<std::endl;
// }
// AggregatesCoarsenedAgain.CheckOrthogonal();
// std::cout<<GridLogMessage << "**************************************************"<< std::endl;
// std::cout<<GridLogMessage << "Solving indef-MCR on coarse space "<< std::endl;
// std::cout<<GridLogMessage << "**************************************************"<< std::endl;
// HermitianLinearOperator<CoarseOperator,CoarseVector> HermIndefLdop(CoarseOp);
// ConjugateResidual<CoarseVector> MCR(1.0e-6,100000);
// MCR(HermIndefLdop,c_src,c_res);
2017-11-24 09:43:34 +00:00
2018-01-18 11:38:28 +00:00
std : : cout < < GridLogMessage < < " ************************************************** " < < std : : endl ;
std : : cout < < GridLogMessage < < " Building deflation preconditioner " < < std : : endl ;
std : : cout < < GridLogMessage < < " ************************************************** " < < std : : endl ;
2017-11-24 09:43:34 +00:00
2018-01-18 11:38:28 +00:00
MultiGridPreconditioner < vSpinColourVector , vTComplex , nbasis , WilsonFermionR > Precon (
Aggregates , CoarseOp , HermIndefOp , Dw , HermIndefOp , Dw ) ;
2017-11-24 09:43:34 +00:00
2018-01-18 11:38:28 +00:00
MultiGridPreconditioner < vSpinColourVector , vTComplex , nbasis , WilsonFermionR > PreconDD (
Aggregates , CoarseOp , HermIndefOp , Dw , HermIndefOpDD , DwDD ) ;
2017-11-24 09:43:34 +00:00
// MultiGridPreconditioner(Aggregates &Agg, CoarseOperator &Coarse,
// FineOperator &Fine,Matrix &FineMatrix,
// FineOperator &Smooth,Matrix &SmootherMatrix)
2018-01-17 16:56:34 +00:00
TrivialPrecon < LatticeFermion > Simple ;
std : : cout < < GridLogMessage < < " ************************************************** " < < std : : endl ;
std : : cout < < GridLogMessage < < " Building two level VPGCR and FGMRES solvers " < < std : : endl ;
std : : cout < < GridLogMessage < < " ************************************************** " < < std : : endl ;
2018-01-18 11:38:28 +00:00
PrecGeneralisedConjugateResidual < LatticeFermion > VPGCRMG ( 1.0e-12 , 100 , Precon , 8 , 8 ) ;
FlexibleGeneralisedMinimalResidual < LatticeFermion > FGMRESMG ( 1.0e-12 , 100 , Precon , 8 ) ;
2018-01-17 16:56:34 +00:00
std : : cout < < GridLogMessage < < " checking norm src " < < norm2 ( src ) < < std : : endl ;
std : : cout < < GridLogMessage < < " ************************************************** " < < std : : endl ;
std : : cout < < GridLogMessage < < " Building unpreconditioned VPGCR and FGMRES solvers " < < std : : endl ;
std : : cout < < GridLogMessage < < " ************************************************** " < < std : : endl ;
2018-01-18 11:38:28 +00:00
PrecGeneralisedConjugateResidual < LatticeFermion > VPGCRT ( 1.0e-12 , 4000000 , Simple , 8 , 8 ) ;
FlexibleGeneralisedMinimalResidual < LatticeFermion > FGMREST ( 1.0e-12 , 4000000 , Simple , 8 ) ;
2018-01-17 16:56:34 +00:00
std : : cout < < GridLogMessage < < " ************************************************** " < < std : : endl ;
std : : cout < < GridLogMessage < < " Testing the four solvers " < < std : : endl ;
std : : cout < < GridLogMessage < < " ************************************************** " < < std : : endl ;
2018-01-18 11:38:28 +00:00
std : : vector < OperatorFunction < LatticeFermion > * > solvers ;
2018-01-17 16:56:34 +00:00
solvers . push_back ( & VPGCRMG ) ;
solvers . push_back ( & FGMRESMG ) ;
solvers . push_back ( & VPGCRT ) ;
solvers . push_back ( & FGMREST ) ;
for ( auto elem : solvers ) {
result = zero ;
2018-01-18 11:38:28 +00:00
( * elem ) ( HermIndefOp , src , result ) ;
2018-01-17 16:56:34 +00:00
}
2017-11-24 09:43:34 +00:00
2017-07-21 12:39:03 +01:00
Grid_finalize ( ) ;
}