mirror of
https://github.com/paboyle/Grid.git
synced 2025-04-04 11:15:55 +01:00
cleaned up cloverhelpers; fixed test compact_clover which runs
This commit is contained in:
parent
2851870d70
commit
3d44aa9cb9
@ -98,71 +98,10 @@ public:
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static GaugeLinkField Cmunu(std::vector<GaugeLinkField> &U, GaugeLinkField &lambda, int mu, int nu) {
|
||||||
static void CloverTermDerivative(GaugeField& clover_force,
|
return Helpers::Cmunu(U, lambda, mu, nu);
|
||||||
const FermionField& X,
|
|
||||||
const FermionField& Y,
|
|
||||||
const std::vector<GaugeLinkField>& U,
|
|
||||||
RealD csw_t, RealD csw_r) {
|
|
||||||
GaugeLinkField force_mu(clover_force.Grid()), lambda(clover_force.Grid());
|
|
||||||
PropagatorField Lambda(clover_force.Grid());
|
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////
|
|
||||||
// Clover term derivative
|
|
||||||
///////////////////////////////////////////////////////////
|
|
||||||
Impl::outerProductImpl(Lambda, X, Y);
|
|
||||||
//std::cout << "Lambda:" << Lambda << std::endl;
|
|
||||||
|
|
||||||
Gamma::Algebra sigma[] = {
|
|
||||||
Gamma::Algebra::SigmaXY,
|
|
||||||
Gamma::Algebra::SigmaXZ,
|
|
||||||
Gamma::Algebra::SigmaXT,
|
|
||||||
Gamma::Algebra::MinusSigmaXY,
|
|
||||||
Gamma::Algebra::SigmaYZ,
|
|
||||||
Gamma::Algebra::SigmaYT,
|
|
||||||
Gamma::Algebra::MinusSigmaXZ,
|
|
||||||
Gamma::Algebra::MinusSigmaYZ,
|
|
||||||
Gamma::Algebra::SigmaZT,
|
|
||||||
Gamma::Algebra::MinusSigmaXT,
|
|
||||||
Gamma::Algebra::MinusSigmaYT,
|
|
||||||
Gamma::Algebra::MinusSigmaZT};
|
|
||||||
|
|
||||||
/*
|
|
||||||
sigma_{\mu \nu}=
|
|
||||||
| 0 sigma[0] sigma[1] sigma[2] |
|
|
||||||
| sigma[3] 0 sigma[4] sigma[5] |
|
|
||||||
| sigma[6] sigma[7] 0 sigma[8] |
|
|
||||||
| sigma[9] sigma[10] sigma[11] 0 |
|
|
||||||
*/
|
|
||||||
|
|
||||||
int count = 0;
|
|
||||||
clover_force = Zero();
|
|
||||||
for (int mu = 0; mu < 4; mu++)
|
|
||||||
{
|
|
||||||
force_mu = Zero();
|
|
||||||
for (int nu = 0; nu < 4; nu++)
|
|
||||||
{
|
|
||||||
if (mu == nu)
|
|
||||||
continue;
|
|
||||||
|
|
||||||
RealD factor;
|
|
||||||
if (nu == 4 || mu == 4)
|
|
||||||
{
|
|
||||||
factor = 2.0 * csw_t;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
factor = 2.0 * csw_r;
|
|
||||||
}
|
|
||||||
PropagatorField Slambda = Gamma(sigma[count]) * Lambda; // sigma checked
|
|
||||||
Impl::TraceSpinImpl(lambda, Slambda); // traceSpin ok
|
|
||||||
force_mu -= factor*Helpers::Cmunu(U, lambda, mu, nu); // checked
|
|
||||||
count++;
|
|
||||||
}
|
|
||||||
|
|
||||||
pokeLorentz(clover_force, U[mu] * force_mu, mu);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
@ -227,15 +166,14 @@ public:
|
|||||||
ExpClover += pref * Clover;
|
ExpClover += pref * Clover;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Convert the data layout of the clover terms
|
|
||||||
Clover = ExpClover * diag_mass;
|
Clover = ExpClover * diag_mass;
|
||||||
CloverInv = adj(ExpClover * (1.0/diag_mass));
|
CloverInv = adj(ExpClover * (1.0/diag_mass));
|
||||||
}
|
}
|
||||||
|
|
||||||
static void CloverTermDerivative(GaugeField& clover_force, const FermionField& X, const FermionField& Y,
|
static GaugeLinkField Cmunu(std::vector<GaugeLinkField> &U, GaugeLinkField &lambda, int mu, int nu) {
|
||||||
const std::vector<GaugeLinkField>& U, RealD csw_t, RealD csw_r) {
|
|
||||||
assert(0);
|
assert(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
@ -329,14 +267,9 @@ public:
|
|||||||
RealD csw_t, RealD diag_mass) {
|
RealD csw_t, RealD diag_mass) {
|
||||||
GridBase* grid = Diagonal.Grid();
|
GridBase* grid = Diagonal.Grid();
|
||||||
int NMAX = getNMAX(Diagonal, 3.*csw_t/diag_mass);
|
int NMAX = getNMAX(Diagonal, 3.*csw_t/diag_mass);
|
||||||
// To be optimized: too much memory traffic; implement exp in improved layout
|
|
||||||
// Felix + Fabian: replace code below with
|
|
||||||
//
|
|
||||||
// ConvertLayout Clover -> Diagonal, Triangle
|
|
||||||
// ModifyBoundaries
|
|
||||||
// EvaluateExp
|
|
||||||
|
|
||||||
// code to be replaced
|
// To be optimized: implement exp in improved layout
|
||||||
|
// START: code to be replaced
|
||||||
CloverField Clover(grid), ExpClover(grid);
|
CloverField Clover(grid), ExpClover(grid);
|
||||||
|
|
||||||
CompactHelpers::ConvertLayout(Diagonal, Triangle, Clover);
|
CompactHelpers::ConvertLayout(Diagonal, Triangle, Clover);
|
||||||
@ -353,9 +286,11 @@ public:
|
|||||||
|
|
||||||
// Convert the data layout of the clover terms
|
// Convert the data layout of the clover terms
|
||||||
CompactHelpers::ConvertLayout(ExpClover, Diagonal, Triangle);
|
CompactHelpers::ConvertLayout(ExpClover, Diagonal, Triangle);
|
||||||
|
CompactHelpers::ConvertLayout(adj(ExpClover), DiagonalInv, TriangleInv);
|
||||||
|
// END: code to be replaced
|
||||||
|
|
||||||
Diagonal = Diagonal * diag_mass;
|
Diagonal = Diagonal * diag_mass;
|
||||||
Triangle = Triangle * diag_mass;
|
Triangle = Triangle * diag_mass;
|
||||||
CompactHelpers::ConvertLayout(adj(ExpClover), DiagonalInv, TriangleInv);
|
|
||||||
DiagonalInv = DiagonalInv*(1.0/diag_mass);
|
DiagonalInv = DiagonalInv*(1.0/diag_mass);
|
||||||
TriangleInv = TriangleInv*(1.0/diag_mass);
|
TriangleInv = TriangleInv*(1.0/diag_mass);
|
||||||
}
|
}
|
||||||
|
@ -134,45 +134,6 @@ void WilsonCloverFermion<Impl, CloverHelpers>::ImportGauge(const GaugeField &_Um
|
|||||||
|
|
||||||
double t4 = usecond();
|
double t4 = usecond();
|
||||||
CloverHelpers::Instantiate(CloverTerm, CloverTermInv, csw_t, this->diag_mass);
|
CloverHelpers::Instantiate(CloverTerm, CloverTermInv, csw_t, this->diag_mass);
|
||||||
// CloverTerm += diag_mass;
|
|
||||||
//
|
|
||||||
// double t4 = usecond();
|
|
||||||
// int lvol = _Umu.Grid()->lSites();
|
|
||||||
// int DimRep = Impl::Dimension;
|
|
||||||
//
|
|
||||||
// double t5 = usecond();
|
|
||||||
// {
|
|
||||||
// autoView(CTv,CloverTerm,CpuRead);
|
|
||||||
// autoView(CTIv,CloverTermInv,CpuWrite);
|
|
||||||
// thread_for(site, lvol, {
|
|
||||||
// Coordinate lcoor;
|
|
||||||
// grid->LocalIndexToLocalCoor(site, lcoor);
|
|
||||||
// Eigen::MatrixXcd EigenCloverOp = Eigen::MatrixXcd::Zero(Ns * DimRep, Ns * DimRep);
|
|
||||||
// Eigen::MatrixXcd EigenInvCloverOp = Eigen::MatrixXcd::Zero(Ns * DimRep, Ns * DimRep);
|
|
||||||
// typename SiteClover::scalar_object Qx = Zero(), Qxinv = Zero();
|
|
||||||
// peekLocalSite(Qx, CTv, lcoor);
|
|
||||||
// //if (csw!=0){
|
|
||||||
// for (int j = 0; j < Ns; j++)
|
|
||||||
// for (int k = 0; k < Ns; k++)
|
|
||||||
// for (int a = 0; a < DimRep; a++)
|
|
||||||
// for (int b = 0; b < DimRep; b++){
|
|
||||||
// auto zz = Qx()(j, k)(a, b);
|
|
||||||
// EigenCloverOp(a + j * DimRep, b + k * DimRep) = std::complex<double>(zz);
|
|
||||||
// }
|
|
||||||
// // if (site==0) std::cout << "site =" << site << "\n" << EigenCloverOp << std::endl;
|
|
||||||
//
|
|
||||||
// EigenInvCloverOp = EigenCloverOp.inverse();
|
|
||||||
// //std::cout << EigenInvCloverOp << std::endl;
|
|
||||||
// for (int j = 0; j < Ns; j++)
|
|
||||||
// for (int k = 0; k < Ns; k++)
|
|
||||||
// for (int a = 0; a < DimRep; a++)
|
|
||||||
// for (int b = 0; b < DimRep; b++)
|
|
||||||
// Qxinv()(j, k)(a, b) = EigenInvCloverOp(a + j * DimRep, b + k * DimRep);
|
|
||||||
// // if (site==0) std::cout << "site =" << site << "\n" << EigenInvCloverOp << std::endl;
|
|
||||||
// // }
|
|
||||||
// pokeLocalSite(Qxinv, CTIv, lcoor);
|
|
||||||
// });
|
|
||||||
// }
|
|
||||||
|
|
||||||
double t5 = usecond();
|
double t5 = usecond();
|
||||||
// Separate the even and odd parts
|
// Separate the even and odd parts
|
||||||
|
@ -117,8 +117,8 @@ void runBenchmark(int* argc, char*** argv) {
|
|||||||
|
|
||||||
// type definitions
|
// type definitions
|
||||||
typedef WilsonImpl<vCoeff_t, FundamentalRepresentation, CoeffReal> WImpl;
|
typedef WilsonImpl<vCoeff_t, FundamentalRepresentation, CoeffReal> WImpl;
|
||||||
typedef WilsonCloverFermion<WImpl> WilsonCloverOperator;
|
typedef WilsonCloverFermion<WImpl, CloverHelpers<WImpl>> WilsonCloverOperator;
|
||||||
typedef CompactWilsonCloverFermion<WImpl> CompactWilsonCloverOperator;
|
typedef CompactWilsonCloverFermion<WImpl, CompactCloverHelpers<WImpl>> CompactWilsonCloverOperator;
|
||||||
typedef typename WilsonCloverOperator::FermionField Fermion;
|
typedef typename WilsonCloverOperator::FermionField Fermion;
|
||||||
typedef typename WilsonCloverOperator::GaugeField Gauge;
|
typedef typename WilsonCloverOperator::GaugeField Gauge;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user