2016-01-02 14:51:32 +00:00
|
|
|
/*************************************************************************************
|
|
|
|
|
|
|
|
Grid physics library, www.github.com/paboyle/Grid
|
|
|
|
|
|
|
|
Source file: ./tests/Test_cayley_coarsen_support.cc
|
|
|
|
|
|
|
|
Copyright (C) 2015
|
|
|
|
|
|
|
|
Author: Azusa Yamaguchi <ayamaguc@staffmail.ed.ac.uk>
|
|
|
|
Author: Peter Boyle <paboyle@ph.ed.ac.uk>
|
|
|
|
|
|
|
|
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
|
|
|
|
*************************************************************************************/
|
|
|
|
/* END LEGAL */
|
2016-07-07 22:31:07 +01:00
|
|
|
#include <Grid/Grid.h>
|
2015-06-08 12:04:59 +01:00
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
using namespace Grid;
|
|
|
|
using namespace Grid::QCD;
|
|
|
|
|
|
|
|
|
|
|
|
template<class d>
|
|
|
|
struct scal {
|
|
|
|
d internal;
|
|
|
|
};
|
|
|
|
|
2017-01-24 03:13:43 +00:00
|
|
|
Gamma::Algebra Gmu [] = {
|
|
|
|
Gamma::Algebra::GammaX,
|
|
|
|
Gamma::Algebra::GammaY,
|
|
|
|
Gamma::Algebra::GammaZ,
|
|
|
|
Gamma::Algebra::GammaT
|
2015-06-08 12:04:59 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
int main (int argc, char ** argv)
|
|
|
|
{
|
|
|
|
Grid_init(&argc,&argv);
|
|
|
|
|
2015-06-09 22:43:10 +01:00
|
|
|
const int Ls=8;
|
2015-06-08 12:04:59 +01:00
|
|
|
|
2015-07-01 22:45:15 +01:00
|
|
|
GridCartesian * UGrid = SpaceTimeGrid::makeFourDimGrid(GridDefaultLatt(), GridDefaultSimd(Nd,vComplex::Nsimd()),GridDefaultMpi());
|
2015-06-08 12:04:59 +01:00
|
|
|
GridRedBlackCartesian * UrbGrid = SpaceTimeGrid::makeFourDimRedBlackGrid(UGrid);
|
|
|
|
|
|
|
|
GridCartesian * FGrid = SpaceTimeGrid::makeFiveDimGrid(Ls,UGrid);
|
|
|
|
GridRedBlackCartesian * FrbGrid = SpaceTimeGrid::makeFiveDimRedBlackGrid(Ls,UGrid);
|
|
|
|
|
|
|
|
// Construct a coarsened grid
|
|
|
|
std::vector<int> clatt = GridDefaultLatt();
|
|
|
|
for(int d=0;d<clatt.size();d++){
|
|
|
|
clatt[d] = clatt[d]/2;
|
|
|
|
}
|
2015-07-01 22:45:15 +01:00
|
|
|
GridCartesian *Coarse4d = SpaceTimeGrid::makeFourDimGrid(clatt, GridDefaultSimd(Nd,vComplex::Nsimd()),GridDefaultMpi());;
|
2015-06-08 12:04:59 +01:00
|
|
|
GridCartesian *Coarse5d = SpaceTimeGrid::makeFiveDimGrid(1,Coarse4d);
|
|
|
|
|
|
|
|
std::vector<int> seeds4({1,2,3,4});
|
|
|
|
std::vector<int> seeds5({5,6,7,8});
|
2015-06-09 22:43:10 +01:00
|
|
|
std::vector<int> cseeds({5,6,7,8});
|
|
|
|
GridParallelRNG RNG5(FGrid); RNG5.SeedFixedIntegers(seeds5);
|
|
|
|
GridParallelRNG RNG4(UGrid); RNG4.SeedFixedIntegers(seeds4);
|
|
|
|
GridParallelRNG CRNG(Coarse5d);CRNG.SeedFixedIntegers(cseeds);
|
2015-06-08 12:04:59 +01:00
|
|
|
|
|
|
|
LatticeFermion src(FGrid); random(RNG5,src);
|
|
|
|
LatticeFermion result(FGrid); result=zero;
|
|
|
|
LatticeFermion ref(FGrid); ref=zero;
|
|
|
|
LatticeFermion tmp(FGrid);
|
|
|
|
LatticeFermion err(FGrid);
|
2016-11-29 13:13:56 +00:00
|
|
|
LatticeGaugeField Umu(UGrid); SU3::HotConfiguration(RNG4,Umu);
|
2015-06-09 22:43:10 +01:00
|
|
|
|
2015-06-09 10:26:19 +01:00
|
|
|
#if 0
|
2015-06-08 12:04:59 +01:00
|
|
|
std::vector<LatticeColourMatrix> U(4,UGrid);
|
2015-06-09 10:26:19 +01:00
|
|
|
Umu=zero;
|
|
|
|
Complex cone(1.0,0.0);
|
|
|
|
for(int nn=0;nn<Nd;nn++){
|
|
|
|
if(1) {
|
2015-07-23 17:31:13 +01:00
|
|
|
if (nn>2) { U[nn]=zero; std::cout<<GridLogMessage << "zeroing gauge field in dir "<<nn<<std::endl; }
|
|
|
|
else { U[nn]=cone; std::cout<<GridLogMessage << "unit gauge field in dir "<<nn<<std::endl; }
|
2015-06-09 10:26:19 +01:00
|
|
|
}
|
|
|
|
pokeIndex<LorentzIndex>(Umu,U[nn],nn);
|
2015-06-08 12:04:59 +01:00
|
|
|
}
|
2015-06-09 10:26:19 +01:00
|
|
|
#endif
|
2015-06-09 22:43:10 +01:00
|
|
|
|
2015-06-08 12:04:59 +01:00
|
|
|
RealD mass=0.5;
|
|
|
|
RealD M5=1.8;
|
|
|
|
|
2015-08-10 20:47:44 +01:00
|
|
|
DomainWallFermionR Ddwf(Umu,*FGrid,*FrbGrid,*UGrid,*UrbGrid,mass,M5);
|
|
|
|
Gamma5R5HermitianLinearOperator<DomainWallFermionR,LatticeFermion> HermIndefOp(Ddwf);
|
2015-06-08 12:04:59 +01:00
|
|
|
|
|
|
|
HermIndefOp.Op(src,ref);
|
|
|
|
HermIndefOp.OpDiag(src,result);
|
|
|
|
|
|
|
|
for(int d=0;d<4;d++){
|
2015-06-09 22:43:10 +01:00
|
|
|
HermIndefOp.OpDir(src,tmp,d+1,+1); result=result+tmp;
|
2015-07-23 17:31:13 +01:00
|
|
|
std::cout<<GridLogMessage<<"dir "<<d<<" tmp "<<norm2(tmp)<<std::endl;
|
2015-06-09 22:43:10 +01:00
|
|
|
HermIndefOp.OpDir(src,tmp,d+1,-1); result=result+tmp;
|
2015-07-23 17:31:13 +01:00
|
|
|
std::cout<<GridLogMessage<<"dir "<<d<<" tmp "<<norm2(tmp)<<std::endl;
|
2015-06-08 12:04:59 +01:00
|
|
|
}
|
|
|
|
err = result-ref;
|
2015-07-23 17:31:13 +01:00
|
|
|
std::cout<<GridLogMessage<<"Error "<<norm2(err)<<std::endl;
|
2015-06-08 12:04:59 +01:00
|
|
|
|
2015-06-09 10:26:19 +01:00
|
|
|
const int nbasis = 2;
|
2018-02-13 02:08:49 +00:00
|
|
|
const int cb = 0 ;
|
2015-06-09 22:43:10 +01:00
|
|
|
LatticeFermion prom(FGrid);
|
|
|
|
|
2015-06-20 22:22:56 +01:00
|
|
|
std::vector<LatticeFermion> subspace(nbasis,FGrid);
|
|
|
|
|
2015-07-23 17:31:13 +01:00
|
|
|
std::cout<<GridLogMessage<<"Calling Aggregation class" <<std::endl;
|
2015-06-20 22:22:56 +01:00
|
|
|
|
2015-08-10 20:47:44 +01:00
|
|
|
MdagMLinearOperator<DomainWallFermionR,LatticeFermion> HermDefOp(Ddwf);
|
2015-06-20 22:22:56 +01:00
|
|
|
typedef Aggregation<vSpinColourVector,vTComplex,nbasis> Subspace;
|
2018-02-13 02:08:49 +00:00
|
|
|
Subspace Aggregates(Coarse5d,FGrid,cb);
|
2015-06-20 22:22:56 +01:00
|
|
|
Aggregates.CreateSubspaceRandom(RNG5);
|
|
|
|
|
|
|
|
subspace=Aggregates.subspace;
|
|
|
|
|
2015-07-23 17:31:13 +01:00
|
|
|
std::cout<<GridLogMessage << "Called aggregation class"<< std::endl;
|
2015-06-08 12:04:59 +01:00
|
|
|
|
2015-06-09 22:43:10 +01:00
|
|
|
typedef CoarsenedMatrix<vSpinColourVector,vTComplex,nbasis> LittleDiracOperator;
|
|
|
|
typedef LittleDiracOperator::CoarseVector CoarseVector;
|
2015-06-08 12:04:59 +01:00
|
|
|
|
2015-06-09 22:43:10 +01:00
|
|
|
LittleDiracOperator LittleDiracOp(*Coarse5d);
|
2015-06-08 12:04:59 +01:00
|
|
|
|
2015-06-20 22:22:56 +01:00
|
|
|
LittleDiracOp.CoarsenOperator(FGrid,HermIndefOp,Aggregates);
|
2015-06-08 12:04:59 +01:00
|
|
|
|
2015-06-09 22:43:10 +01:00
|
|
|
CoarseVector c_src (Coarse5d);
|
|
|
|
CoarseVector c_res (Coarse5d);
|
|
|
|
CoarseVector c_proj(Coarse5d);
|
2015-06-08 12:04:59 +01:00
|
|
|
|
2015-06-09 22:43:10 +01:00
|
|
|
Complex one(1.0);
|
|
|
|
c_src = one; // 1 in every element for vector 1.
|
|
|
|
|
|
|
|
blockPromote(c_src,err,subspace);
|
|
|
|
|
|
|
|
prom=zero;
|
|
|
|
for(int b=0;b<nbasis;b++){
|
|
|
|
prom=prom+subspace[b];
|
|
|
|
}
|
|
|
|
err=err-prom;
|
2015-07-23 17:31:13 +01:00
|
|
|
std::cout<<GridLogMessage<<"Promoted back from subspace err "<<norm2(err)<<std::endl;
|
2015-06-09 22:43:10 +01:00
|
|
|
|
|
|
|
HermIndefOp.HermOp(prom,tmp);
|
|
|
|
blockProject(c_proj,tmp,subspace);
|
|
|
|
|
|
|
|
LittleDiracOp.M(c_src,c_res);
|
|
|
|
|
|
|
|
c_proj = c_proj - c_res;
|
2015-07-23 17:31:13 +01:00
|
|
|
std::cout<<GridLogMessage<<"Representation of ldop within subspace "<<norm2(c_proj)<<std::endl;
|
2015-06-08 12:04:59 +01:00
|
|
|
|
2015-07-23 17:31:13 +01:00
|
|
|
std::cout<<GridLogMessage << "Multiplying by LittleDiracOp "<< std::endl;
|
2015-06-08 12:04:59 +01:00
|
|
|
LittleDiracOp.M(c_src,c_res);
|
|
|
|
|
2015-07-23 17:31:13 +01:00
|
|
|
std::cout<<GridLogMessage<<"Testing hermiticity explicitly by inspecting matrix elements"<<std::endl;
|
2015-06-09 22:43:10 +01:00
|
|
|
LittleDiracOp.AssertHermitian();
|
|
|
|
|
2015-07-23 17:31:13 +01:00
|
|
|
std::cout<<GridLogMessage << "Testing Hermiticity stochastically "<< std::endl;
|
2015-06-09 22:43:10 +01:00
|
|
|
CoarseVector phi(Coarse5d);
|
|
|
|
CoarseVector chi(Coarse5d);
|
|
|
|
CoarseVector Aphi(Coarse5d);
|
|
|
|
CoarseVector Achi(Coarse5d);
|
|
|
|
|
|
|
|
random(CRNG,phi);
|
|
|
|
random(CRNG,chi);
|
|
|
|
|
|
|
|
|
2015-07-23 17:31:13 +01:00
|
|
|
std::cout<<GridLogMessage<<"Made randoms"<<std::endl;
|
2015-06-09 22:43:10 +01:00
|
|
|
|
|
|
|
LittleDiracOp.M(phi,Aphi);
|
|
|
|
LittleDiracOp.Mdag(chi,Achi);
|
|
|
|
|
|
|
|
ComplexD pAc = innerProduct(chi,Aphi);
|
|
|
|
ComplexD cAp = innerProduct(phi,Achi);
|
|
|
|
ComplexD cAc = innerProduct(chi,Achi);
|
|
|
|
ComplexD pAp = innerProduct(phi,Aphi);
|
|
|
|
|
2015-07-23 17:31:13 +01:00
|
|
|
std::cout<<GridLogMessage<< "pAc "<<pAc<<" cAp "<< cAp<< " diff "<<pAc-adj(cAp)<<std::endl;
|
2015-06-09 22:43:10 +01:00
|
|
|
|
2015-07-23 17:31:13 +01:00
|
|
|
std::cout<<GridLogMessage<< "pAp "<<pAp<<" cAc "<< cAc<<"Should be real"<< std::endl;
|
2015-06-09 22:43:10 +01:00
|
|
|
|
2015-07-23 17:31:13 +01:00
|
|
|
std::cout<<GridLogMessage<<"Testing linearity"<<std::endl;
|
2015-06-09 22:43:10 +01:00
|
|
|
CoarseVector PhiPlusChi(Coarse5d);
|
|
|
|
CoarseVector APhiPlusChi(Coarse5d);
|
|
|
|
CoarseVector linerr(Coarse5d);
|
|
|
|
PhiPlusChi = phi+chi;
|
|
|
|
LittleDiracOp.M(PhiPlusChi,APhiPlusChi);
|
|
|
|
|
|
|
|
linerr= APhiPlusChi-Aphi;
|
|
|
|
linerr= linerr-Achi;
|
2015-07-23 17:31:13 +01:00
|
|
|
std::cout<<GridLogMessage<<"**Diff "<<norm2(linerr)<<std::endl;
|
2015-06-09 22:43:10 +01:00
|
|
|
|
|
|
|
|
2015-07-23 17:31:13 +01:00
|
|
|
std::cout<<GridLogMessage << "Done "<< std::endl;
|
2015-06-08 12:04:59 +01:00
|
|
|
Grid_finalize();
|
|
|
|
}
|