diff --git a/programs/Hadrons/Makefile.am b/programs/Hadrons/Makefile.am index 72f04612..1c97305a 100644 --- a/programs/Hadrons/Makefile.am +++ b/programs/Hadrons/Makefile.am @@ -32,6 +32,6 @@ Hadrons_SOURCES += \ # solver modules Hadrons_SOURCES += \ - SRBPrecCG.cc + SolRBPrecCG.cc Hadrons_LDADD = -lGrid diff --git a/programs/Hadrons/SRBPrecCG.cc b/programs/Hadrons/SolRBPrecCG.cc similarity index 78% rename from programs/Hadrons/SRBPrecCG.cc rename to programs/Hadrons/SolRBPrecCG.cc index 42ee332f..250c81e6 100644 --- a/programs/Hadrons/SRBPrecCG.cc +++ b/programs/Hadrons/SolRBPrecCG.cc @@ -1,7 +1,7 @@ /******************************************************************************* Grid physics library, www.github.com/paboyle/Grid -Source file: programs/Hadrons/SRBPrecCG.cc +Source file: programs/Hadrons/SolRBPrecCG.cc Copyright (C) 2016 @@ -25,35 +25,35 @@ See the full license in the file "LICENSE" in the top level distribution directory. *******************************************************************************/ -#include +#include using namespace Grid; using namespace QCD; using namespace Hadrons; /****************************************************************************** -* SRBPrecCG implementation * +* SolRBPrecCG implementation * ******************************************************************************/ // constructor ///////////////////////////////////////////////////////////////// -SRBPrecCG::SRBPrecCG(const std::string name) +SolRBPrecCG::SolRBPrecCG(const std::string name) : Module(name) {} // parse parameters //////////////////////////////////////////////////////////// -void SRBPrecCG::parseParameters(XmlReader &reader, const std::string name) +void SolRBPrecCG::parseParameters(XmlReader &reader, const std::string name) { read(reader, name, par_); } // dependencies/products /////////////////////////////////////////////////////// -std::vector SRBPrecCG::getInput(void) +std::vector SolRBPrecCG::getInput(void) { std::vector in = {par_.action}; return in; } -std::vector SRBPrecCG::getOutput(void) +std::vector SolRBPrecCG::getOutput(void) { std::vector out = {getName()}; @@ -61,7 +61,7 @@ std::vector SRBPrecCG::getOutput(void) } // execution /////////////////////////////////////////////////////////////////// -void SRBPrecCG::execute(Environment &env) +void SolRBPrecCG::execute(Environment &env) { auto &mat = *(env.getFermionMatrix(par_.action)); auto solver = [&mat, this](LatticeFermion &sol, @@ -73,5 +73,8 @@ void SRBPrecCG::execute(Environment &env) schurSolver(mat, source, sol); }; + LOG(Message) << "setting up Schur red-black preconditioned CG for" + << " action '" << par_.action << "' with residual " + << par_.residual << std::endl; env.addSolver(getName(), solver, par_.action); } diff --git a/programs/Hadrons/SRBPrecCG.hpp b/programs/Hadrons/SolRBPrecCG.hpp similarity index 87% rename from programs/Hadrons/SRBPrecCG.hpp rename to programs/Hadrons/SolRBPrecCG.hpp index f657bd50..ca046efa 100644 --- a/programs/Hadrons/SRBPrecCG.hpp +++ b/programs/Hadrons/SolRBPrecCG.hpp @@ -1,7 +1,7 @@ /******************************************************************************* Grid physics library, www.github.com/paboyle/Grid -Source file: programs/Hadrons/SRBPrecCG.hpp +Source file: programs/Hadrons/SolRBPrecCG.hpp Copyright (C) 2016 @@ -25,8 +25,8 @@ See the full license in the file "LICENSE" in the top level distribution directory. *******************************************************************************/ -#ifndef Hadrons_SRBPrecCG_hpp_ -#define Hadrons_SRBPrecCG_hpp_ +#ifndef Hadrons_SolRBPrecCG_hpp_ +#define Hadrons_SolRBPrecCG_hpp_ #include #include @@ -37,7 +37,7 @@ BEGIN_HADRONS_NAMESPACE /****************************************************************************** * Schur red-black preconditioned CG * ******************************************************************************/ -class SRBPrecCG: public Module +class SolRBPrecCG: public Module { public: class Par: Serializable @@ -48,9 +48,9 @@ public: }; public: // constructor - SRBPrecCG(const std::string name); + SolRBPrecCG(const std::string name); // destructor - virtual ~SRBPrecCG(void) = default; + virtual ~SolRBPrecCG(void) = default; // parse parameters virtual void parseParameters(XmlReader &reader, const std::string name); // dependencies/products @@ -62,8 +62,8 @@ private: Par par_; }; -MODULE_REGISTER(SRBPrecCG); +MODULE_REGISTER(SolRBPrecCG); END_HADRONS_NAMESPACE -#endif // Hadrons_SRBPrecCG_hpp_ +#endif // Hadrons_SolRBPrecCG_hpp_