diff --git a/Grid/qcd/utils/A2Autils.h b/Grid/qcd/utils/A2Autils.h index 6750cbff..f6db38be 100644 --- a/Grid/qcd/utils/A2Autils.h +++ b/Grid/qcd/utils/A2Autils.h @@ -1194,17 +1194,18 @@ void A2Autils::ContractWWVV(std::vector &WWVV, for(int t=0;t namespace Grid { namespace QCD { + template class FourierAcceleratedGaugeFixer : public Gimpl { public: @@ -45,18 +46,21 @@ class FourierAcceleratedGaugeFixer : public Gimpl { A[mu] = Ta(U[mu]) * cmi; } } - static void DmuAmu(const std::vector &A,GaugeMat &dmuAmu) { + static void DmuAmu(const std::vector &A,GaugeMat &dmuAmu,int orthog) { dmuAmu=zero; for(int mu=0;mu::avgPlaquette(Umu); + Real link_trace=WilsonLoops::linkTrace(Umu); + if( (orthog>=0) && (orthog(Umu,U[mu],mu); // Monitor progress and convergence test // infrequently to minimise cost overhead @@ -106,14 +124,14 @@ class FourierAcceleratedGaugeFixer : public Gimpl { } } }; - static Real SteepestDescentStep(std::vector &U,GaugeMat &xform,Real & alpha, GaugeMat & dmuAmu) { + static Real SteepestDescentStep(std::vector &U,GaugeMat &xform,Real & alpha, GaugeMat & dmuAmu,int orthog) { GridBase *grid = U[0]._grid; std::vector A(Nd,grid); GaugeMat g(grid); GaugeLinkToLieAlgebraField(U,A); - ExpiAlphaDmuAmu(A,g,alpha,dmuAmu); + ExpiAlphaDmuAmu(A,g,alpha,dmuAmu,orthog); Real vol = grid->gSites(); @@ -125,7 +143,7 @@ class FourierAcceleratedGaugeFixer : public Gimpl { return trG; } - static Real FourierAccelSteepestDescentStep(std::vector &U,GaugeMat &xform,Real & alpha, GaugeMat & dmuAmu) { + static Real FourierAccelSteepestDescentStep(std::vector &U,GaugeMat &xform,Real & alpha, GaugeMat & dmuAmu,int orthog) { GridBase *grid = U[0]._grid; @@ -144,31 +162,41 @@ class FourierAcceleratedGaugeFixer : public Gimpl { GaugeLinkToLieAlgebraField(U,A); - DmuAmu(A,dmuAmu); + DmuAmu(A,dmuAmu,orthog); - theFFT.FFT_all_dim(dmuAmu_p,dmuAmu,FFT::forward); + std::vector mask(Nd,1); + for(int mu=0;mu latt_size = grid->GlobalDimensions(); std::vector coor(grid->_ndimension,0); for(int mu=0;mu=0) && (orthogGlobalDimensions()[orthog];t++){ + coor[orthog]=t; + pokeSite(TComplex(16.0),Fp,coor); + } + } + dmuAmu_p = dmuAmu_p * Fp; - theFFT.FFT_all_dim(dmuAmu,dmuAmu_p,FFT::backward); + theFFT.FFT_dim_mask(dmuAmu,dmuAmu_p,mask,FFT::backward); GaugeMat ciadmam(grid); Complex cialpha(0.0,-alpha); @@ -183,11 +211,11 @@ class FourierAcceleratedGaugeFixer : public Gimpl { return trG; } - static void ExpiAlphaDmuAmu(const std::vector &A,GaugeMat &g,Real & alpha, GaugeMat &dmuAmu) { + static void ExpiAlphaDmuAmu(const std::vector &A,GaugeMat &g,Real & alpha, GaugeMat &dmuAmu,int orthog) { GridBase *grid = g._grid; Complex cialpha(0.0,-alpha); GaugeMat ciadmam(grid); - DmuAmu(A,dmuAmu); + DmuAmu(A,dmuAmu,orthog); ciadmam = dmuAmu*cialpha; SU::taExp(ciadmam,g); } diff --git a/Hadrons/DiskVector.hpp b/Hadrons/DiskVector.hpp index 7410f1c3..3a8d0696 100644 --- a/Hadrons/DiskVector.hpp +++ b/Hadrons/DiskVector.hpp @@ -395,12 +395,26 @@ void DiskVectorBase::cacheInsert(const unsigned int i, const T &obj) const auto &freeInd = *freePtr_; auto &loads = *loadsPtr_; - evict(); - index[i] = freeInd.top(); - freeInd.pop(); - cache[index.at(i)] = obj; - loads.push_back(i); - modified[index.at(i)] = false; + // cache miss, evict and store + if (index.find(i) == index.end()) + { + evict(); + index[i] = freeInd.top(); + freeInd.pop(); + cache[index.at(i)] = obj; + loads.push_back(i); + modified[index.at(i)] = false; + } + // cache hit, modify current value + else + { + auto pos = std::find(loads.begin(), loads.end(), i); + + cache[index.at(i)] = obj; + modified[index.at(i)] = true; + loads.erase(pos); + loads.push_back(i); + } #ifdef DV_DEBUG std::string msg; diff --git a/Hadrons/Modules/MContraction/A2ALoop.hpp b/Hadrons/Modules/MContraction/A2ALoop.hpp index 8ae129e3..2ef99354 100644 --- a/Hadrons/Modules/MContraction/A2ALoop.hpp +++ b/Hadrons/Modules/MContraction/A2ALoop.hpp @@ -89,7 +89,7 @@ std::vector TA2ALoop::getInput(void) template std::vector TA2ALoop::getOutput(void) { - std::vector out = {}; + std::vector out = {getName()}; return out; } diff --git a/Hadrons/Modules/MContraction/WeakEye3pt.hpp b/Hadrons/Modules/MContraction/WeakEye3pt.hpp index 22af2501..ea7ff529 100644 --- a/Hadrons/Modules/MContraction/WeakEye3pt.hpp +++ b/Hadrons/Modules/MContraction/WeakEye3pt.hpp @@ -52,7 +52,7 @@ BEGIN_HADRONS_NAMESPACE * | * one trace | two traces * - * one trace : tr(qbr*gOut*qs*adj(gIn)*g5*adj(qbl)*g5*G*loop*G*qbr*gOut) + * one trace : tr(qbr*gOut*qs*adj(gIn)*g5*adj(qbl)*g5*G*loop*G) * two traces: tr(qbr*gOut*qs*adj(gIn)*g5*adj(qbl)*g5*G)*tr(loop*G) * */ @@ -118,7 +118,7 @@ template std::vector TWeakEye3pt::getInput(void) { std::vector in = {par().qBarLeft, par().qBarRight, - par().qSpectator}; + par().qSpectator, par().loop}; return in; } @@ -170,7 +170,7 @@ void TWeakEye3pt::execute(void) r.info.op = G.g; // one trace - corr = trace(qbr*gOut*qst*adj(gIn)*g5*adj(qbl)*g5*G*loop*G*qbr*gOut); + corr = trace(qbr*gOut*qst*adj(gIn)*g5*adj(qbl)*g5*G*loop*G); sliceSum(corr, buf, Tp); r.corr.clear(); for (unsigned int t = 0; t < buf.size(); ++t) diff --git a/Hadrons/Modules/MFermion/GaugeProp.hpp b/Hadrons/Modules/MFermion/GaugeProp.hpp index f11113b4..49b4bd5a 100644 --- a/Hadrons/Modules/MFermion/GaugeProp.hpp +++ b/Hadrons/Modules/MFermion/GaugeProp.hpp @@ -111,13 +111,18 @@ void TGaugeProp::setup(void) { Ls_ = env().getObjectLs(par().solver); envCreateLat(PropagatorField, getName()); - envTmpLat(FermionField, "source", Ls_); - envTmpLat(FermionField, "sol", Ls_); envTmpLat(FermionField, "tmp"); if (Ls_ > 1) { + envTmpLat(FermionField, "source", Ls_); + envTmpLat(FermionField, "sol", Ls_); envCreateLat(PropagatorField, getName() + "_5d", Ls_); } + else + { + envTmpLat(FermionField, "source"); + envTmpLat(FermionField, "sol"); + } } // execution /////////////////////////////////////////////////////////////////// diff --git a/Hadrons/Modules/MGauge/GaugeFix.hpp b/Hadrons/Modules/MGauge/GaugeFix.hpp index 57b1e082..f5ebb39f 100644 --- a/Hadrons/Modules/MGauge/GaugeFix.hpp +++ b/Hadrons/Modules/MGauge/GaugeFix.hpp @@ -42,6 +42,8 @@ BEGIN_HADRONS_NAMESPACE ******************************************************************************/ BEGIN_MODULE_NAMESPACE(MGauge) +GRID_SERIALIZABLE_ENUM(Fix, undef, coulomb, Nd - 1, landau, -1); + class GaugeFixPar: Serializable { public: @@ -51,6 +53,7 @@ public: int, maxiter, Real, Omega_tol, Real, Phi_tol, + Fix, gaugeFix, bool, Fourier); }; @@ -115,8 +118,8 @@ void TGaugeFix::execute(void) //Loads the gauge and fixes it { std::cout << "executing" << std::endl; - LOG(Message) << "Fixing the Gauge" << std::endl; - LOG(Message) << par().gauge << std::endl; + LOG(Message) << "Fixing the Gauge " << par().gauge << " using " + << par().gaugeFix << " guage fixing. " << Nd - 1 << std::endl; auto &U = envGet(GaugeField, par().gauge); auto &Umu = envGet(GaugeField, getName()); auto &xform = envGet(GaugeMat, getName()+"_xform"); @@ -126,9 +129,10 @@ void TGaugeFix::execute(void) int maxiter = par().maxiter; Real Omega_tol = par().Omega_tol; Real Phi_tol = par().Phi_tol; + int gaugeFix = par().gaugeFix; bool Fourier = par().Fourier; Umu = U; - FourierAcceleratedGaugeFixer::SteepestDescentGaugeFix(Umu,xform,alpha,maxiter,Omega_tol,Phi_tol,Fourier); + FourierAcceleratedGaugeFixer::SteepestDescentGaugeFix(Umu,xform,alpha,maxiter,Omega_tol,Phi_tol,Fourier,gaugeFix); LOG(Message) << "Gauge Fixed" << std::endl; } diff --git a/Hadrons/Modules/MIO/LoadEigenPack.cc b/Hadrons/Modules/MIO/LoadEigenPack.cc index 15153871..0750d265 100644 --- a/Hadrons/Modules/MIO/LoadEigenPack.cc +++ b/Hadrons/Modules/MIO/LoadEigenPack.cc @@ -31,7 +31,7 @@ using namespace Grid; using namespace Hadrons; using namespace MIO; -template class Grid::Hadrons::MIO::TLoadEigenPack>; +template class Grid::Hadrons::MIO::TLoadEigenPack, GIMPL>; #ifdef GRID_DEFAULT_PRECISION_DOUBLE -template class Grid::Hadrons::MIO::TLoadEigenPack>; +template class Grid::Hadrons::MIO::TLoadEigenPack, GIMPL>; #endif diff --git a/Hadrons/Modules/MIO/LoadEigenPack.hpp b/Hadrons/Modules/MIO/LoadEigenPack.hpp index 9751073a..0d6036b8 100644 --- a/Hadrons/Modules/MIO/LoadEigenPack.hpp +++ b/Hadrons/Modules/MIO/LoadEigenPack.hpp @@ -47,16 +47,21 @@ public: std::string, filestem, bool, multiFile, unsigned int, size, - unsigned int, Ls); + unsigned int, Ls, + std::string, gaugeXform); }; -template +template class TLoadEigenPack: public Module { public: typedef typename Pack::Field Field; typedef typename Pack::FieldIo FieldIo; typedef BaseEigenPack BasePack; + +public: + GAUGE_TYPE_ALIASES(GImpl, ); + typedef typename GImpl::GaugeLinkField GaugeMat; public: // constructor TLoadEigenPack(const std::string name); @@ -71,31 +76,36 @@ public: virtual void execute(void); }; -MODULE_REGISTER_TMP(LoadFermionEigenPack, TLoadEigenPack>, MIO); +MODULE_REGISTER_TMP(LoadFermionEigenPack, ARG(TLoadEigenPack, GIMPL>), MIO); #ifdef GRID_DEFAULT_PRECISION_DOUBLE -MODULE_REGISTER_TMP(LoadFermionEigenPackIo32, ARG(TLoadEigenPack>), MIO); +MODULE_REGISTER_TMP(LoadFermionEigenPackIo32, ARG(TLoadEigenPack, GIMPL>), MIO); #endif /****************************************************************************** * TLoadEigenPack implementation * ******************************************************************************/ // constructor ///////////////////////////////////////////////////////////////// -template -TLoadEigenPack::TLoadEigenPack(const std::string name) +template +TLoadEigenPack::TLoadEigenPack(const std::string name) : Module(name) {} // dependencies/products /////////////////////////////////////////////////////// -template -std::vector TLoadEigenPack::getInput(void) +template +std::vector TLoadEigenPack::getInput(void) { std::vector in; + + if (!par().gaugeXform.empty()) + { + in = {par().gaugeXform}; + } return in; } -template -std::vector TLoadEigenPack::getOutput(void) +template +std::vector TLoadEigenPack::getOutput(void) { std::vector out = {getName()}; @@ -103,8 +113,8 @@ std::vector TLoadEigenPack::getOutput(void) } // setup /////////////////////////////////////////////////////////////////////// -template -void TLoadEigenPack::setup(void) +template +void TLoadEigenPack::setup(void) { GridBase *gridIo = nullptr; @@ -114,16 +124,64 @@ void TLoadEigenPack::setup(void) } envCreateDerived(BasePack, Pack, getName(), par().Ls, par().size, envGetRbGrid(Field, par().Ls), gridIo); + + if (!par().gaugeXform.empty()) + { + if (par().Ls > 1) + { + LOG(Message) << "Setup 5d GaugeMat for Ls = " << par().Ls << std::endl; + envTmp(GaugeMat, "tmpXform", par().Ls, envGetGrid5(Field, par().Ls)); + envTmp(GaugeMat, "tmpXformOdd", par().Ls, envGetRbGrid5(Field, par().Ls)); + } + else + { + LOG(Message) << "Setup 4d GaugeMat for Ls = " << par().Ls << std::endl; + envTmp(GaugeMat, "tmpXform", par().Ls, envGetGrid(Field)); + envTmp(GaugeMat, "tmpXformOdd", par().Ls, envGetRbGrid(Field)); + } + + } } // execution /////////////////////////////////////////////////////////////////// -template -void TLoadEigenPack::execute(void) +template +void TLoadEigenPack::execute(void) { auto &epack = envGetDerived(BasePack, Pack, getName()); epack.read(par().filestem, par().multiFile, vm().getTrajectory()); epack.eval.resize(par().size); + + if (!par().gaugeXform.empty()) + { + + LOG(Message) << "Applying gauge transformation to eigenvectors " << getName() + << " using " << par().gaugeXform << std::endl; + auto &xform = envGet(GaugeMat, par().gaugeXform); + envGetTmp(GaugeMat, tmpXform); + envGetTmp(GaugeMat, tmpXformOdd); + + if (par().Ls > 1) + { + LOG(Message) << "Creating 5d GaugeMat from " << par().gaugeXform << std::endl; + startTimer("5-d gauge transform creation"); + for (unsigned int j = 0; j < par().Ls; j++) + { + InsertSlice(xform, tmpXform, j, 0); + } + stopTimer("5-d gauge transform creation"); + } + + pickCheckerboard(Odd, tmpXformOdd, tmpXform); + startTimer("Transform application"); + for (unsigned int i = 0; i < par().size; i++) + { + LOG(Message) << "Applying gauge transformation to eigenvector i = " << i << "/" << par().size << std::endl; + epack.evec[i].checkerboard = Odd; + epack.evec[i] = tmpXformOdd * epack.evec[i]; + } + stopTimer("Transform application"); + } } END_MODULE_NAMESPACE diff --git a/Hadrons/Modules/MSource/Wall.hpp b/Hadrons/Modules/MSource/Wall.hpp index e43c61bb..945e2760 100644 --- a/Hadrons/Modules/MSource/Wall.hpp +++ b/Hadrons/Modules/MSource/Wall.hpp @@ -119,6 +119,9 @@ template void TWall::setup(void) { envCreateLat(PropagatorField, getName()); + envCache(Lattice>, tName_, 1, envGetGrid(LatticeComplex)); + envCacheLat(LatticeComplex, momphName_); + envTmpLat(LatticeComplex, "coor"); } // execution /////////////////////////////////////////////////////////////////// diff --git a/tests/core/Test_fft_gfix.cc b/tests/core/Test_fft_gfix.cc index 7fdf5f73..4eb6887d 100644 --- a/tests/core/Test_fft_gfix.cc +++ b/tests/core/Test_fft_gfix.cc @@ -60,6 +60,9 @@ int main (int argc, char ** argv) std::cout<< "* Testing we can gauge fix steep descent a RGT of Unit gauge *" <::avgPlaquette(Umu); std::cout << " Final plaquette "<::avgPlaquette(Umu); + std::cout << " Initial plaquette "<::SteepestDescentGaugeFix(Umu,xform3,alpha,10000,1.0e-12, 1.0e-12,true,coulomb_dir); + + std::cout << Umu<::avgPlaquette(Umu); + std::cout << " Final plaquette "<