2017-01-19 10:00:02 +00:00
|
|
|
/*************************************************************************************
|
|
|
|
|
|
|
|
Grid physics library, www.github.com/paboyle/Grid
|
|
|
|
|
|
|
|
Source file: ./lib/qcd/modules/ActionModules.h
|
|
|
|
|
|
|
|
Copyright (C) 2016
|
|
|
|
|
|
|
|
Author: Guido Cossu <guido.cossu@ed.ac.uk>
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
See the full license in the file "LICENSE" in the top level distribution
|
|
|
|
directory
|
|
|
|
*************************************************************************************/
|
|
|
|
/* END LEGAL */
|
|
|
|
#ifndef ACTION_MODULES_H
|
|
|
|
#define ACTION_MODULES_H
|
|
|
|
|
|
|
|
/*
|
|
|
|
Define loadable, serializable modules
|
|
|
|
for the HMC execution
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Grid {
|
|
|
|
|
|
|
|
//////////////////////////////////////////////
|
2017-01-20 12:56:20 +00:00
|
|
|
// Actions
|
2017-01-19 10:00:02 +00:00
|
|
|
//////////////////////////////////////////////
|
|
|
|
|
2017-01-20 12:56:20 +00:00
|
|
|
template <class Product, class Resource>
|
|
|
|
class ActionModuleBase: public HMCModuleBase<Product>{
|
|
|
|
public:
|
|
|
|
typedef Resource Res;
|
|
|
|
virtual void acquireResource(Resource& ){};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2017-01-19 10:00:02 +00:00
|
|
|
template <class ActionType, class APar>
|
|
|
|
class ActionModule
|
|
|
|
: public Parametrized<APar>,
|
2017-01-20 12:56:20 +00:00
|
|
|
public ActionModuleBase< QCD::Action<typename ActionType::GaugeField> , QCD::GridModule > {
|
2017-01-19 10:00:02 +00:00
|
|
|
public:
|
2017-01-20 12:56:20 +00:00
|
|
|
typedef ActionModuleBase< QCD::Action<typename ActionType::GaugeField>, QCD::GridModule > Base;
|
2017-01-19 10:00:02 +00:00
|
|
|
typedef typename Base::Product Product;
|
2017-01-20 12:56:20 +00:00
|
|
|
typedef APar Parameters;
|
2017-01-19 10:00:02 +00:00
|
|
|
|
|
|
|
std::unique_ptr<ActionType> ActionPtr;
|
|
|
|
|
|
|
|
ActionModule(APar Par) : Parametrized<APar>(Par) {}
|
|
|
|
|
|
|
|
template <class ReaderClass>
|
|
|
|
ActionModule(Reader<ReaderClass>& Reader) : Parametrized<APar>(Reader){};
|
|
|
|
|
2017-01-20 12:56:20 +00:00
|
|
|
|
2017-01-19 10:00:02 +00:00
|
|
|
virtual void print_parameters(){
|
2017-01-20 12:56:20 +00:00
|
|
|
Parametrized<APar>::print_parameters();
|
2017-01-19 10:00:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Product* getPtr() {
|
|
|
|
if (!ActionPtr) initialize();
|
|
|
|
|
|
|
|
return ActionPtr.get();
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
virtual void initialize() = 0;
|
|
|
|
|
2017-01-20 12:56:20 +00:00
|
|
|
};
|
2017-01-19 10:00:02 +00:00
|
|
|
|
2017-01-20 12:56:20 +00:00
|
|
|
//////////////////////////
|
2017-01-19 10:00:02 +00:00
|
|
|
// Modules
|
2017-01-20 12:56:20 +00:00
|
|
|
//////////////////////////
|
2017-01-19 10:00:02 +00:00
|
|
|
|
|
|
|
namespace QCD{
|
|
|
|
|
|
|
|
class PlaqPlusRectangleGaugeActionParameters : Serializable {
|
|
|
|
public:
|
|
|
|
GRID_SERIALIZABLE_CLASS_MEMBERS(PlaqPlusRectangleGaugeActionParameters,
|
|
|
|
RealD, c_plaq,
|
|
|
|
RealD, c_rect);
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
class RBCGaugeActionParameters : Serializable {
|
|
|
|
public:
|
|
|
|
GRID_SERIALIZABLE_CLASS_MEMBERS(RBCGaugeActionParameters,
|
|
|
|
RealD, beta,
|
|
|
|
RealD, c1);
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
class BetaGaugeActionParameters : Serializable {
|
|
|
|
public:
|
|
|
|
GRID_SERIALIZABLE_CLASS_MEMBERS(BetaGaugeActionParameters,
|
|
|
|
RealD, beta);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
template <class Impl >
|
|
|
|
class WilsonGModule: public ActionModule<WilsonGaugeAction<Impl>, BetaGaugeActionParameters> {
|
|
|
|
typedef ActionModule<WilsonGaugeAction<Impl>, BetaGaugeActionParameters> ActionBase;
|
|
|
|
using ActionBase::ActionBase; // for constructors
|
|
|
|
|
|
|
|
// acquire resource
|
|
|
|
virtual void initialize(){
|
|
|
|
this->ActionPtr.reset(new WilsonGaugeAction<Impl>(this->Par_.beta));
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
template <class Impl >
|
|
|
|
class PlaqPlusRectangleGModule: public ActionModule<PlaqPlusRectangleAction<Impl>, PlaqPlusRectangleGaugeActionParameters> {
|
|
|
|
typedef ActionModule<PlaqPlusRectangleAction<Impl>, PlaqPlusRectangleGaugeActionParameters> ActionBase;
|
|
|
|
using ActionBase::ActionBase; // for constructors
|
|
|
|
|
|
|
|
// acquire resource
|
|
|
|
virtual void initialize(){
|
|
|
|
this->ActionPtr.reset(new PlaqPlusRectangleAction<Impl>(this->Par_.c_plaq, this->Par_.c_rect));
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
template <class Impl >
|
|
|
|
class RBCGModule: public ActionModule<RBCGaugeAction<Impl>, RBCGaugeActionParameters> {
|
|
|
|
typedef ActionModule<RBCGaugeAction<Impl>, RBCGaugeActionParameters> ActionBase;
|
|
|
|
using ActionBase::ActionBase; // for constructors
|
|
|
|
|
|
|
|
// acquire resource
|
|
|
|
virtual void initialize(){
|
|
|
|
this->ActionPtr.reset(new RBCGaugeAction<Impl>(this->Par_.beta, this->Par_.c1));
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
template <class Impl >
|
|
|
|
class SymanzikGModule: public ActionModule<SymanzikGaugeAction<Impl>, BetaGaugeActionParameters> {
|
|
|
|
typedef ActionModule<SymanzikGaugeAction<Impl>, BetaGaugeActionParameters> ActionBase;
|
|
|
|
using ActionBase::ActionBase; // for constructors
|
|
|
|
|
|
|
|
// acquire resource
|
|
|
|
virtual void initialize(){
|
|
|
|
this->ActionPtr.reset(new SymanzikGaugeAction<Impl>(this->Par_.beta));
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
template <class Impl >
|
|
|
|
class IwasakiGModule: public ActionModule<IwasakiGaugeAction<Impl>, BetaGaugeActionParameters> {
|
|
|
|
typedef ActionModule<IwasakiGaugeAction<Impl>, BetaGaugeActionParameters> ActionBase;
|
|
|
|
using ActionBase::ActionBase; // for constructors
|
|
|
|
|
|
|
|
// acquire resource
|
|
|
|
virtual void initialize(){
|
|
|
|
this->ActionPtr.reset(new IwasakiGaugeAction<Impl>(this->Par_.beta));
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
template <class Impl >
|
|
|
|
class DBW2GModule: public ActionModule<DBW2GaugeAction<Impl>, BetaGaugeActionParameters> {
|
|
|
|
typedef ActionModule<DBW2GaugeAction<Impl>, BetaGaugeActionParameters> ActionBase;
|
|
|
|
using ActionBase::ActionBase; // for constructors
|
|
|
|
|
|
|
|
// acquire resource
|
|
|
|
virtual void initialize(){
|
|
|
|
this->ActionPtr.reset(new DBW2GaugeAction<Impl>(this->Par_.beta));
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2017-01-20 12:56:20 +00:00
|
|
|
/////////////////////////////////////////
|
|
|
|
// Fermion Actions
|
|
|
|
/////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
|
|
template <class Impl >
|
|
|
|
class TwoFlavourFModule: public ActionModule<TwoFlavourPseudoFermionAction<Impl>, NoParameters> {
|
|
|
|
typedef ActionModule<TwoFlavourPseudoFermionAction<Impl>, NoParameters> ActionBase;
|
|
|
|
using ActionBase::ActionBase; // for constructors
|
|
|
|
|
|
|
|
std::unique_ptr<HMCModuleBase<OperatorFunction<typename Impl::FermionField> > >solver_mod;
|
|
|
|
std::unique_ptr<FermionOperatorModuleBase<FermionOperator<Impl>> > fop_mod;
|
|
|
|
public:
|
|
|
|
|
|
|
|
virtual void acquireResource(typename ActionBase::Res& GridMod){
|
|
|
|
fop_mod->AddGridPair(GridMod);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class ReaderClass>
|
|
|
|
TwoFlavourFModule(Reader<ReaderClass>& Reader) : ActionBase(Reader){
|
|
|
|
std::cout << "Constructing TwoFlavourFModule" << std::endl;
|
|
|
|
auto& SolverFactory = HMC_SolverModuleFactory<solver_string, typename Impl::FermionField, ReaderClass>::getInstance();
|
|
|
|
Reader.push("Solver");
|
|
|
|
std::string solv_name;
|
|
|
|
read(Reader,"name", solv_name);
|
|
|
|
solver_mod = SolverFactory.create(solv_name, Reader);
|
|
|
|
std::cout << "Registered types " << std::endl;
|
|
|
|
std::cout << SolverFactory.getBuilderList() << std::endl;
|
|
|
|
solver_mod->print_parameters();
|
|
|
|
Reader.pop();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
auto &FOFactory = HMC_FermionOperatorModuleFactory<fermionop_string, Impl, ReaderClass>::getInstance();
|
|
|
|
Reader.push("Operator");
|
|
|
|
std::string op_name;
|
|
|
|
read(Reader,"name", op_name);
|
|
|
|
fop_mod = FOFactory.create(op_name, Reader);
|
|
|
|
std::cout << "Registered types " << std::endl;
|
|
|
|
std::cout << FOFactory.getBuilderList() << std::endl;
|
|
|
|
|
|
|
|
fop_mod->print_parameters();
|
|
|
|
Reader.pop();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
private:
|
|
|
|
// acquire resource
|
|
|
|
virtual void initialize() {
|
|
|
|
this->ActionPtr.reset(new TwoFlavourPseudoFermionAction<Impl>(*fop_mod->getPtr(), *solver_mod->getPtr(), *solver_mod->getPtr()));
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2017-01-19 10:00:02 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef WilsonGModule<PeriodicGimplR> WilsonGMod;
|
|
|
|
typedef SymanzikGModule<PeriodicGimplR> SymanzikGMod;
|
|
|
|
typedef IwasakiGModule<PeriodicGimplR> IwasakiGMod;
|
|
|
|
typedef DBW2GModule<PeriodicGimplR> DBW2GMod;
|
|
|
|
typedef RBCGModule<PeriodicGimplR> RBCGMod;
|
|
|
|
typedef PlaqPlusRectangleGModule<PeriodicGimplR> PlaqPlusRectangleGMod;
|
|
|
|
|
|
|
|
}// QCD temporarily here
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
////////////////////////////////////////
|
|
|
|
// Factories specialisations
|
|
|
|
////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// use the same classed defined by Antonin, does not make sense to rewrite
|
|
|
|
// Factory is perfectly fine
|
|
|
|
// Registar must be changed because I do not want to use the ModuleFactory
|
|
|
|
|
2017-01-20 12:56:20 +00:00
|
|
|
// explicit ref to LatticeGaugeField must be changed or put in the factory
|
|
|
|
typedef ActionModuleBase< QCD::Action< QCD::LatticeGaugeField >, QCD::GridModule > HMC_LGTActionModBase;
|
2017-01-19 10:00:02 +00:00
|
|
|
|
|
|
|
template <char const *str, class ReaderClass >
|
|
|
|
class HMC_LGTActionModuleFactory
|
2017-01-20 12:56:20 +00:00
|
|
|
: public Factory < HMC_LGTActionModBase , Reader<ReaderClass> > {
|
2017-01-19 10:00:02 +00:00
|
|
|
public:
|
2017-01-20 12:56:20 +00:00
|
|
|
typedef Reader<ReaderClass> TheReader;
|
|
|
|
// use SINGLETON FUNCTOR MACRO HERE
|
2017-01-19 10:00:02 +00:00
|
|
|
HMC_LGTActionModuleFactory(const HMC_LGTActionModuleFactory& e) = delete;
|
|
|
|
void operator=(const HMC_LGTActionModuleFactory& e) = delete;
|
|
|
|
static HMC_LGTActionModuleFactory& getInstance(void) {
|
|
|
|
static HMC_LGTActionModuleFactory e;
|
|
|
|
return e;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
HMC_LGTActionModuleFactory(void) = default;
|
|
|
|
std::string obj_type() const {
|
2017-01-20 12:56:20 +00:00
|
|
|
return std::string(str);
|
2017-01-19 10:00:02 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
extern char gauge_string[];
|
|
|
|
static Registrar<QCD::WilsonGMod, HMC_LGTActionModuleFactory<gauge_string, XmlReader> > __WGmodXMLInit("Wilson");
|
|
|
|
static Registrar<QCD::SymanzikGMod, HMC_LGTActionModuleFactory<gauge_string, XmlReader> > __SymGmodXMLInit("Symanzik");
|
|
|
|
static Registrar<QCD::IwasakiGMod, HMC_LGTActionModuleFactory<gauge_string, XmlReader> > __IwGmodXMLInit("Iwasaki");
|
|
|
|
static Registrar<QCD::DBW2GMod, HMC_LGTActionModuleFactory<gauge_string, XmlReader> > __DBW2GmodXMLInit("DBW2");
|
|
|
|
static Registrar<QCD::RBCGMod, HMC_LGTActionModuleFactory<gauge_string, XmlReader> > __RBCGmodXMLInit("RBC");
|
|
|
|
static Registrar<QCD::PlaqPlusRectangleGMod, HMC_LGTActionModuleFactory<gauge_string, XmlReader> > __PPRectGmodXMLInit("PlaqPlusRect");
|
|
|
|
|
2017-01-20 12:56:20 +00:00
|
|
|
|
|
|
|
// FIXME more general implementation
|
|
|
|
static Registrar<QCD::TwoFlavourFModule<QCD::WilsonImplR> , HMC_LGTActionModuleFactory<gauge_string, XmlReader> > __TwoFlavourFmodXMLInit("TwoFlavours");
|
|
|
|
|
2017-01-19 10:00:02 +00:00
|
|
|
// add here the registration for other implementations and readers
|
|
|
|
|
|
|
|
|
2017-01-20 12:56:20 +00:00
|
|
|
} // Grid
|
2017-01-19 10:00:02 +00:00
|
|
|
|
|
|
|
|
|
|
|
#endif //HMC_MODULES_H
|