2016-12-15 18:26:39 +00:00
|
|
|
/*************************************************************************************
|
|
|
|
|
2016-04-30 08:17:04 +01:00
|
|
|
Grid physics library, www.github.com/paboyle/Grid
|
|
|
|
|
2016-12-15 18:26:39 +00:00
|
|
|
Source file: extras/Hadrons/Modules/MSolver/RBPrecCG.hpp
|
2016-04-30 08:17:04 +01:00
|
|
|
|
2017-12-26 13:16:47 +00:00
|
|
|
Copyright (C) 2015-2018
|
2016-04-30 08:17:04 +01:00
|
|
|
|
|
|
|
Author: Antonin Portelli <antonin.portelli@me.com>
|
2018-08-07 18:40:48 +01:00
|
|
|
Author: fionnoh <fionnoh@gmail.com>
|
2016-04-30 08:17:04 +01:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License along
|
|
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
|
2016-12-15 18:26:39 +00:00
|
|
|
See the full license in the file "LICENSE" in the top level distribution directory
|
|
|
|
*************************************************************************************/
|
2016-12-15 18:21:52 +00:00
|
|
|
/* END LEGAL */
|
2016-04-30 08:17:04 +01:00
|
|
|
|
2017-06-06 17:45:30 +01:00
|
|
|
#ifndef Hadrons_MSolver_RBPrecCG_hpp_
|
|
|
|
#define Hadrons_MSolver_RBPrecCG_hpp_
|
2016-04-30 08:17:04 +01:00
|
|
|
|
2018-08-28 15:00:40 +01:00
|
|
|
#include <Hadrons/Global.hpp>
|
|
|
|
#include <Hadrons/Module.hpp>
|
|
|
|
#include <Hadrons/ModuleFactory.hpp>
|
|
|
|
#include <Hadrons/Solver.hpp>
|
|
|
|
#include <Hadrons/EigenPack.hpp>
|
2016-04-30 08:17:04 +01:00
|
|
|
|
|
|
|
BEGIN_HADRONS_NAMESPACE
|
|
|
|
|
|
|
|
/******************************************************************************
|
2016-05-04 00:30:29 +01:00
|
|
|
* Schur red-black preconditioned CG *
|
2016-04-30 08:17:04 +01:00
|
|
|
******************************************************************************/
|
2016-12-05 05:29:32 +00:00
|
|
|
BEGIN_MODULE_NAMESPACE(MSolver)
|
|
|
|
|
|
|
|
class RBPrecCGPar: Serializable
|
|
|
|
{
|
|
|
|
public:
|
2018-02-27 18:45:23 +00:00
|
|
|
GRID_SERIALIZABLE_CLASS_MEMBERS(RBPrecCGPar ,
|
2018-03-14 14:54:25 +00:00
|
|
|
std::string , action,
|
|
|
|
unsigned int, maxIteration,
|
|
|
|
double , residual,
|
|
|
|
std::string , eigenPack);
|
2016-12-05 05:29:32 +00:00
|
|
|
};
|
|
|
|
|
2018-03-14 14:54:25 +00:00
|
|
|
template <typename FImpl, int nBasis>
|
2016-12-05 07:47:29 +00:00
|
|
|
class TRBPrecCG: public Module<RBPrecCGPar>
|
2016-04-30 08:17:04 +01:00
|
|
|
{
|
2016-12-05 07:47:29 +00:00
|
|
|
public:
|
2018-06-22 11:14:37 +01:00
|
|
|
FG_TYPE_ALIASES(FImpl,);
|
|
|
|
SOLVER_TYPE_ALIASES(FImpl,);
|
2018-03-14 14:54:25 +00:00
|
|
|
typedef FermionEigenPack<FImpl> EPack;
|
|
|
|
typedef CoarseFermionEigenPack<FImpl, nBasis> CoarseEPack;
|
2018-03-19 13:11:38 +00:00
|
|
|
typedef std::shared_ptr<Guesser<FermionField>> GuesserPt;
|
2018-03-14 14:54:25 +00:00
|
|
|
typedef DeflatedGuesser<typename FImpl::FermionField> FineGuesser;
|
|
|
|
typedef LocalCoherenceDeflatedGuesser<
|
|
|
|
typename FImpl::FermionField,
|
|
|
|
typename CoarseEPack::CoarseField> CoarseGuesser;
|
2016-12-05 05:29:32 +00:00
|
|
|
public:
|
|
|
|
// constructor
|
2016-12-05 07:47:29 +00:00
|
|
|
TRBPrecCG(const std::string name);
|
2016-12-05 05:29:32 +00:00
|
|
|
// destructor
|
2018-04-24 17:20:25 +01:00
|
|
|
virtual ~TRBPrecCG(void) {};
|
2016-12-05 05:29:32 +00:00
|
|
|
// dependencies/products
|
|
|
|
virtual std::vector<std::string> getInput(void);
|
2017-12-12 13:08:01 +00:00
|
|
|
virtual std::vector<std::string> getReference(void);
|
2016-12-05 05:29:32 +00:00
|
|
|
virtual std::vector<std::string> getOutput(void);
|
2017-12-03 18:46:18 +00:00
|
|
|
protected:
|
2016-12-05 05:29:32 +00:00
|
|
|
// setup
|
|
|
|
virtual void setup(void);
|
|
|
|
// execution
|
|
|
|
virtual void execute(void);
|
|
|
|
};
|
|
|
|
|
2018-04-23 17:35:01 +01:00
|
|
|
MODULE_REGISTER_TMP(RBPrecCG, ARG(TRBPrecCG<FIMPL, HADRONS_DEFAULT_LANCZOS_NBASIS>), MSolver);
|
|
|
|
MODULE_REGISTER_TMP(ZRBPrecCG, ARG(TRBPrecCG<ZFIMPL, HADRONS_DEFAULT_LANCZOS_NBASIS>), MSolver);
|
2016-12-14 17:59:45 +00:00
|
|
|
|
2016-12-05 07:47:29 +00:00
|
|
|
/******************************************************************************
|
|
|
|
* TRBPrecCG template implementation *
|
|
|
|
******************************************************************************/
|
|
|
|
// constructor /////////////////////////////////////////////////////////////////
|
2018-03-14 14:54:25 +00:00
|
|
|
template <typename FImpl, int nBasis>
|
|
|
|
TRBPrecCG<FImpl, nBasis>::TRBPrecCG(const std::string name)
|
2016-12-05 07:47:29 +00:00
|
|
|
: Module(name)
|
|
|
|
{}
|
|
|
|
|
|
|
|
// dependencies/products ///////////////////////////////////////////////////////
|
2018-03-14 14:54:25 +00:00
|
|
|
template <typename FImpl, int nBasis>
|
|
|
|
std::vector<std::string> TRBPrecCG<FImpl, nBasis>::getInput(void)
|
2016-12-05 07:47:29 +00:00
|
|
|
{
|
2017-12-12 13:08:01 +00:00
|
|
|
std::vector<std::string> in = {};
|
2016-12-05 07:47:29 +00:00
|
|
|
|
|
|
|
return in;
|
|
|
|
}
|
|
|
|
|
2018-03-14 14:54:25 +00:00
|
|
|
template <typename FImpl, int nBasis>
|
|
|
|
std::vector<std::string> TRBPrecCG<FImpl, nBasis>::getReference(void)
|
2017-12-12 13:08:01 +00:00
|
|
|
{
|
|
|
|
std::vector<std::string> ref = {par().action};
|
|
|
|
|
2018-04-06 13:16:28 +01:00
|
|
|
if (!par().eigenPack.empty())
|
|
|
|
{
|
|
|
|
ref.push_back(par().eigenPack);
|
|
|
|
}
|
|
|
|
|
2017-12-12 13:08:01 +00:00
|
|
|
return ref;
|
|
|
|
}
|
|
|
|
|
2018-03-14 14:54:25 +00:00
|
|
|
template <typename FImpl, int nBasis>
|
|
|
|
std::vector<std::string> TRBPrecCG<FImpl, nBasis>::getOutput(void)
|
2016-12-05 07:47:29 +00:00
|
|
|
{
|
2018-07-31 11:26:07 +01:00
|
|
|
std::vector<std::string> out = {getName(), getName() + "_subtract"};
|
2016-12-05 07:47:29 +00:00
|
|
|
|
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
|
|
|
// setup ///////////////////////////////////////////////////////////////////////
|
2018-03-14 14:54:25 +00:00
|
|
|
template <typename FImpl, int nBasis>
|
|
|
|
void TRBPrecCG<FImpl, nBasis>::setup(void)
|
2016-12-05 07:47:29 +00:00
|
|
|
{
|
2018-03-09 19:53:55 +00:00
|
|
|
if (par().maxIteration == 0)
|
|
|
|
{
|
2018-04-25 16:49:14 +01:00
|
|
|
HADRONS_ERROR(Argument, "zero maximum iteration");
|
2018-03-09 19:53:55 +00:00
|
|
|
}
|
|
|
|
|
2017-11-22 23:27:19 +00:00
|
|
|
LOG(Message) << "setting up Schur red-black preconditioned CG for"
|
|
|
|
<< " action '" << par().action << "' with residual "
|
2018-03-09 19:53:55 +00:00
|
|
|
<< par().residual << ", maximum iteration "
|
|
|
|
<< par().maxIteration << std::endl;
|
2016-12-05 07:47:29 +00:00
|
|
|
|
2018-03-19 13:11:38 +00:00
|
|
|
auto Ls = env().getObjectLs(par().action);
|
|
|
|
auto &mat = envGet(FMat, par().action);
|
2018-03-14 14:54:25 +00:00
|
|
|
std::string guesserName = getName() + "_guesser";
|
2018-03-19 13:11:38 +00:00
|
|
|
GuesserPt guesser{nullptr};
|
2018-03-14 14:54:25 +00:00
|
|
|
|
|
|
|
if (par().eigenPack.empty())
|
|
|
|
{
|
2018-03-19 13:11:38 +00:00
|
|
|
guesser.reset(new ZeroGuesser<FermionField>());
|
2018-03-14 14:54:25 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
auto &epack = envGetDerived(EPack, CoarseEPack, par().eigenPack);
|
2018-03-19 13:11:38 +00:00
|
|
|
|
2018-04-06 19:38:20 +01:00
|
|
|
LOG(Message) << "using low-mode deflation with coarse eigenpack '"
|
|
|
|
<< par().eigenPack << "' ("
|
|
|
|
<< epack.evecCoarse.size() << " modes)" << std::endl;
|
2018-03-19 13:11:38 +00:00
|
|
|
guesser.reset(new CoarseGuesser(epack.evec, epack.evecCoarse,
|
|
|
|
epack.evalCoarse));
|
2018-03-14 14:54:25 +00:00
|
|
|
}
|
2018-08-08 18:45:06 +01:00
|
|
|
catch (Exceptions::ObjectType &e)
|
2018-03-14 14:54:25 +00:00
|
|
|
{
|
|
|
|
auto &epack = envGet(EPack, par().eigenPack);
|
|
|
|
|
2018-04-06 19:38:20 +01:00
|
|
|
LOG(Message) << "using low-mode deflation with eigenpack '"
|
|
|
|
<< par().eigenPack << "' ("
|
|
|
|
<< epack.evec.size() << " modes)" << std::endl;
|
2018-03-19 13:11:38 +00:00
|
|
|
guesser.reset(new FineGuesser(epack.evec, epack.eval));
|
2018-03-14 14:54:25 +00:00
|
|
|
}
|
|
|
|
}
|
2018-07-31 11:26:07 +01:00
|
|
|
auto makeSolver = [&mat, guesser, this](bool subGuess) {
|
|
|
|
return [&mat, guesser, subGuess, this](FermionField &sol,
|
|
|
|
const FermionField &source) {
|
|
|
|
ConjugateGradient<FermionField> cg(par().residual,
|
|
|
|
par().maxIteration);
|
|
|
|
HADRONS_DEFAULT_SCHUR_SOLVE<FermionField> schurSolver(cg);
|
|
|
|
schurSolver.subtractGuess(subGuess);
|
|
|
|
schurSolver(mat, source, sol, *guesser);
|
|
|
|
};
|
2016-12-05 07:47:29 +00:00
|
|
|
};
|
2018-07-31 11:26:07 +01:00
|
|
|
auto solver = makeSolver(false);
|
2018-06-22 11:14:37 +01:00
|
|
|
envCreate(Solver, getName(), Ls, solver, mat);
|
2018-07-31 11:26:07 +01:00
|
|
|
auto solver_subtract = makeSolver(true);
|
|
|
|
envCreate(Solver, getName() + "_subtract", Ls, solver_subtract, mat);
|
2016-12-05 07:47:29 +00:00
|
|
|
}
|
|
|
|
|
2017-11-22 23:27:19 +00:00
|
|
|
// execution ///////////////////////////////////////////////////////////////////
|
2018-03-14 14:54:25 +00:00
|
|
|
template <typename FImpl, int nBasis>
|
|
|
|
void TRBPrecCG<FImpl, nBasis>::execute(void)
|
2017-11-22 23:27:19 +00:00
|
|
|
{}
|
|
|
|
|
2016-12-05 05:29:32 +00:00
|
|
|
END_MODULE_NAMESPACE
|
2016-05-12 11:59:28 +01:00
|
|
|
|
2016-04-30 08:17:04 +01:00
|
|
|
END_HADRONS_NAMESPACE
|
|
|
|
|
2017-06-06 17:45:30 +01:00
|
|
|
#endif // Hadrons_MSolver_RBPrecCG_hpp_
|