mirror of
https://github.com/paboyle/Grid.git
synced 2025-04-04 19:25:56 +01:00
Cleaning up previous debug lines
This commit is contained in:
parent
5c74b6028b
commit
2fb92dbc6e
@ -234,17 +234,11 @@ namespace Grid {
|
|||||||
virtual RealD MpcDag (const Field &in, Field &out){
|
virtual RealD MpcDag (const Field &in, Field &out){
|
||||||
Field tmp(in._grid);
|
Field tmp(in._grid);
|
||||||
|
|
||||||
std::cout << "norm in :" << norm2(in) << std::endl;
|
|
||||||
_Mat.MeooeDag(in,tmp);
|
_Mat.MeooeDag(in,tmp);
|
||||||
std::cout << "norm tmp :" << norm2(tmp) << std::endl;
|
|
||||||
_Mat.MooeeInvDag(tmp,out);
|
_Mat.MooeeInvDag(tmp,out);
|
||||||
std::cout << "norm out :" << norm2(out) << std::endl;
|
|
||||||
_Mat.MeooeDag(out,tmp);
|
_Mat.MeooeDag(out,tmp);
|
||||||
std::cout << "norm tmp :" << norm2(tmp) << std::endl;
|
|
||||||
|
|
||||||
|
|
||||||
_Mat.MooeeDag(in,out);
|
_Mat.MooeeDag(in,out);
|
||||||
std::cout << "norm out :" << norm2(out) << std::endl;
|
|
||||||
return axpy_norm(out,-1.0,tmp,out);
|
return axpy_norm(out,-1.0,tmp,out);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@ -214,9 +214,7 @@ void CayleyFermion5D<Impl>::MeooeDag5D (const FermionField &psi, FermionField
|
|||||||
std::vector<Coeff_t> lower=cs;
|
std::vector<Coeff_t> lower=cs;
|
||||||
upper[Ls-1]=-mass*upper[Ls-1];
|
upper[Ls-1]=-mass*upper[Ls-1];
|
||||||
lower[0] =-mass*lower[0];
|
lower[0] =-mass*lower[0];
|
||||||
std::cout << "MeooeDag5D: psi: " << norm2(psi) << std::endl;
|
|
||||||
M5Ddag(psi,psi,Din,lower,diag,upper);
|
M5Ddag(psi,psi,Din,lower,diag,upper);
|
||||||
std::cout << "MeooeDag5D: Din: " << norm2(Din) << std::endl;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
template<class Impl>
|
template<class Impl>
|
||||||
@ -282,9 +280,7 @@ void CayleyFermion5D<Impl>::MeooeDag (const FermionField &psi, FermionField &
|
|||||||
} else {
|
} else {
|
||||||
this->DhopOE(psi,tmp,DaggerYes);
|
this->DhopOE(psi,tmp,DaggerYes);
|
||||||
}
|
}
|
||||||
std::cout << "MeooeDag: tmp: " << norm2(tmp) << std::endl;
|
|
||||||
MeooeDag5D(tmp,chi);
|
MeooeDag5D(tmp,chi);
|
||||||
std::cout << "MeooeDag: chi: " << norm2(chi) << std::endl;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
template<class Impl>
|
template<class Impl>
|
||||||
|
@ -60,9 +60,9 @@ public:
|
|||||||
// Gauge action
|
// Gauge action
|
||||||
WilsonGaugeActionR Waction(5.6);
|
WilsonGaugeActionR Waction(5.6);
|
||||||
|
|
||||||
Real mass=0.04;
|
Real mass= 0.04;
|
||||||
Real pv =1.0;
|
Real pv = 1.0;
|
||||||
RealD M5=1.5;
|
RealD M5 = 1.5;
|
||||||
FermionAction DenOp(U,*FGrid,*FrbGrid,*UGrid,*UrbGrid,mass,M5);
|
FermionAction DenOp(U,*FGrid,*FrbGrid,*UGrid,*UrbGrid,mass,M5);
|
||||||
FermionAction NumOp(U,*FGrid,*FrbGrid,*UGrid,*UrbGrid,pv,M5);
|
FermionAction NumOp(U,*FGrid,*FrbGrid,*UGrid,*UrbGrid,pv,M5);
|
||||||
|
|
||||||
|
@ -64,6 +64,7 @@ int main(int argc, char** argv) {
|
|||||||
GridParallelRNG RNG4(UGrid);
|
GridParallelRNG RNG4(UGrid);
|
||||||
RNG4.SeedFixedIntegers(seeds4);
|
RNG4.SeedFixedIntegers(seeds4);
|
||||||
|
|
||||||
|
std::cout << GridLogMessage << "Generating source field" << std::endl;
|
||||||
LatticeFermion src(FGrid);
|
LatticeFermion src(FGrid);
|
||||||
random(RNG5, src);
|
random(RNG5, src);
|
||||||
LatticeFermion result(FGrid);
|
LatticeFermion result(FGrid);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user