diff --git a/extras/Hadrons/Global.hpp b/extras/Hadrons/Global.hpp index fdacb799..cf96ad9b 100644 --- a/extras/Hadrons/Global.hpp +++ b/extras/Hadrons/Global.hpp @@ -72,7 +72,7 @@ using Grid::operator>>; #define SIMPL ScalarImplCR #endif #ifndef GIMPL -#define GIMPL GimplTypesR +#define GIMPL PeriodicGimplR #endif BEGIN_HADRONS_NAMESPACE diff --git a/extras/Hadrons/Modules.hpp b/extras/Hadrons/Modules.hpp index 3a98ec49..9d6ef49a 100644 --- a/extras/Hadrons/Modules.hpp +++ b/extras/Hadrons/Modules.hpp @@ -21,6 +21,7 @@ #include #include #include +#include #include #include #include diff --git a/extras/Hadrons/Modules/MAction/Wilson.hpp b/extras/Hadrons/Modules/MAction/Wilson.hpp index a0eabd82..70e0acf1 100644 --- a/extras/Hadrons/Modules/MAction/Wilson.hpp +++ b/extras/Hadrons/Modules/MAction/Wilson.hpp @@ -102,7 +102,7 @@ std::vector TWilson::getOutput(void) template void TWilson::setup(void) { - LOG(Message) << "Setting up TWilson fermion matrix with m= " << par().mass + LOG(Message) << "Setting up Wilson fermion matrix with m= " << par().mass << " using gauge field '" << par().gauge << "'" << std::endl; LOG(Message) << "Fermion boundary conditions: " << par().boundary << std::endl; diff --git a/extras/Hadrons/Modules/MAction/WilsonClover.hpp b/extras/Hadrons/Modules/MAction/WilsonClover.hpp index bb2c5b59..0fb3b442 100644 --- a/extras/Hadrons/Modules/MAction/WilsonClover.hpp +++ b/extras/Hadrons/Modules/MAction/WilsonClover.hpp @@ -38,7 +38,7 @@ See the full license in the file "LICENSE" in the top level distribution directo BEGIN_HADRONS_NAMESPACE /****************************************************************************** - * TWilson quark action * + * Wilson clover quark action * ******************************************************************************/ BEGIN_MODULE_NAMESPACE(MAction) @@ -106,13 +106,7 @@ std::vector TWilsonClover::getOutput(void) template void TWilsonClover::setup(void) { - //unsigned int size; - - // size = 2*env().template lattice4dSize(); - // env().registerObject(getName(), size); - - - LOG(Message) << "Setting up TWilsonClover fermion matrix with m= " << par().mass + LOG(Message) << "Setting up Wilson clover fermion matrix with m= " << par().mass << " using gauge field '" << par().gauge << "'" << std::endl; LOG(Message) << "Fermion boundary conditions: " << par().boundary << std::endl; @@ -129,23 +123,12 @@ void TWilsonClover::setup(void) par().csw_t, par().clover_anisotropy, implParams); - - - //FMat *fMatPt = new WilsonCloverFermion(U, grid, gridRb, par().mass, - // par().csw_r, - // par().csw_t, - // par().clover_anisotropy, - // implParams); - //env().setObject(getName(), fMatPt); - } // execution /////////////////////////////////////////////////////////////////// template void TWilsonClover::execute() -{ - -} +{} END_MODULE_NAMESPACE diff --git a/extras/Hadrons/Modules/MGauge/StoutSmearing.cc b/extras/Hadrons/Modules/MGauge/StoutSmearing.cc new file mode 100644 index 00000000..161e74aa --- /dev/null +++ b/extras/Hadrons/Modules/MGauge/StoutSmearing.cc @@ -0,0 +1,7 @@ +#include + +using namespace Grid; +using namespace Hadrons; +using namespace MGauge; + +template class Grid::Hadrons::MGauge::TStoutSmearing; diff --git a/extras/Hadrons/Modules/MGauge/StoutSmearing.hpp b/extras/Hadrons/Modules/MGauge/StoutSmearing.hpp new file mode 100644 index 00000000..66406f5b --- /dev/null +++ b/extras/Hadrons/Modules/MGauge/StoutSmearing.hpp @@ -0,0 +1,104 @@ +#ifndef Hadrons_MGauge_StoutSmearing_hpp_ +#define Hadrons_MGauge_StoutSmearing_hpp_ + +#include +#include +#include + +BEGIN_HADRONS_NAMESPACE + +/****************************************************************************** + * Stout smearing * + ******************************************************************************/ +BEGIN_MODULE_NAMESPACE(MGauge) + +class StoutSmearingPar: Serializable +{ +public: + GRID_SERIALIZABLE_CLASS_MEMBERS(StoutSmearingPar, + std::string, gauge, + unsigned int, steps, + double, rho); +}; + +template +class TStoutSmearing: public Module +{ +public: + typedef typename GImpl::Field GaugeField; +public: + // constructor + TStoutSmearing(const std::string name); + // destructor + virtual ~TStoutSmearing(void) {}; + // dependency relation + virtual std::vector getInput(void); + virtual std::vector getOutput(void); + // setup + virtual void setup(void); + // execution + virtual void execute(void); +}; + +MODULE_REGISTER_TMP(StoutSmearing, TStoutSmearing, MGauge); + +/****************************************************************************** + * TStoutSmearing implementation * + ******************************************************************************/ +// constructor ///////////////////////////////////////////////////////////////// +template +TStoutSmearing::TStoutSmearing(const std::string name) +: Module(name) +{} + +// dependencies/products /////////////////////////////////////////////////////// +template +std::vector TStoutSmearing::getInput(void) +{ + std::vector in = {par().gauge}; + + return in; +} + +template +std::vector TStoutSmearing::getOutput(void) +{ + std::vector out = {getName()}; + + return out; +} + +// setup /////////////////////////////////////////////////////////////////////// +template +void TStoutSmearing::setup(void) +{ + envCreateLat(GaugeField, getName()); + envTmpLat(GaugeField, "buf"); +} + +// execution /////////////////////////////////////////////////////////////////// +template +void TStoutSmearing::execute(void) +{ + LOG(Message) << "Smearing '" << par().gauge << "' with " << par().steps + << " step" << ((par().steps > 1) ? "s" : "") + << " of stout smearing and rho= " << par().rho << std::endl; + + Smear_Stout smearer(par().rho); + auto &U = envGet(GaugeField, par().gauge); + auto &Usmr = envGet(GaugeField, getName()); + + envGetTmp(GaugeField, buf); + buf = U; + for (unsigned int n = 0; n < par().steps; ++n) + { + smearer.smear(Usmr, buf); + buf = Usmr; + } +} + +END_MODULE_NAMESPACE + +END_HADRONS_NAMESPACE + +#endif // Hadrons_MGauge_StoutSmearing_hpp_ diff --git a/extras/Hadrons/modules.inc b/extras/Hadrons/modules.inc index a0adfbf4..0a9f5351 100644 --- a/extras/Hadrons/modules.inc +++ b/extras/Hadrons/modules.inc @@ -20,6 +20,7 @@ modules_cc =\ Modules/MSolver/A2AVectors.cc \ Modules/MSolver/RBPrecCG.cc \ Modules/MSolver/LocalCoherenceLanczos.cc \ + Modules/MGauge/StoutSmearing.cc \ Modules/MGauge/Unit.cc \ Modules/MGauge/UnitEm.cc \ Modules/MGauge/StochEm.cc \ @@ -79,6 +80,7 @@ modules_hpp =\ Modules/MSolver/LocalCoherenceLanczos.hpp \ Modules/MSolver/RBPrecCG.hpp \ Modules/MGauge/UnitEm.hpp \ + Modules/MGauge/StoutSmearing.hpp \ Modules/MGauge/Unit.hpp \ Modules/MGauge/Random.hpp \ Modules/MGauge/FundtoHirep.hpp \