2016-12-15 18:26:39 +00:00
|
|
|
/*************************************************************************************
|
|
|
|
|
2016-02-25 12:07:21 +00:00
|
|
|
Grid physics library, www.github.com/paboyle/Grid
|
|
|
|
|
2018-09-01 21:30:30 +01:00
|
|
|
Source file: Hadrons/Module.hpp
|
2016-02-25 12:07:21 +00:00
|
|
|
|
2019-02-05 18:55:24 +00:00
|
|
|
Copyright (C) 2015-2019
|
2016-02-25 12:07:21 +00:00
|
|
|
|
|
|
|
Author: Antonin Portelli <antonin.portelli@me.com>
|
|
|
|
|
|
|
|
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 */
|
2015-12-23 14:21:35 +00:00
|
|
|
|
|
|
|
#ifndef Hadrons_Module_hpp_
|
|
|
|
#define Hadrons_Module_hpp_
|
|
|
|
|
2018-08-28 15:00:40 +01:00
|
|
|
#include <Hadrons/Global.hpp>
|
2018-10-04 20:01:49 +01:00
|
|
|
#include <Hadrons/TimerArray.hpp>
|
2018-08-28 15:00:40 +01:00
|
|
|
#include <Hadrons/VirtualMachine.hpp>
|
2015-12-23 14:21:35 +00:00
|
|
|
|
|
|
|
BEGIN_HADRONS_NAMESPACE
|
|
|
|
|
2016-12-05 04:53:31 +00:00
|
|
|
// module registration macros
|
2018-04-23 17:35:01 +01:00
|
|
|
#define MODULE_REGISTER(mod, base, ns)\
|
2016-12-14 17:59:45 +00:00
|
|
|
class mod: public base\
|
|
|
|
{\
|
|
|
|
public:\
|
|
|
|
typedef base Base;\
|
|
|
|
using Base::Base;\
|
|
|
|
virtual std::string getRegisteredName(void)\
|
|
|
|
{\
|
|
|
|
return std::string(#ns "::" #mod);\
|
|
|
|
}\
|
|
|
|
};\
|
2016-12-05 04:53:31 +00:00
|
|
|
class ns##mod##ModuleRegistrar\
|
|
|
|
{\
|
|
|
|
public:\
|
|
|
|
ns##mod##ModuleRegistrar(void)\
|
|
|
|
{\
|
|
|
|
ModuleFactory &modFac = ModuleFactory::getInstance();\
|
|
|
|
modFac.registerBuilder(#ns "::" #mod, [&](const std::string name)\
|
|
|
|
{\
|
|
|
|
return std::unique_ptr<ns::mod>(new ns::mod(name));\
|
|
|
|
});\
|
|
|
|
}\
|
|
|
|
};\
|
|
|
|
static ns##mod##ModuleRegistrar ns##mod##ModuleRegistrarInstance;
|
|
|
|
|
2018-04-23 17:35:01 +01:00
|
|
|
#define MODULE_REGISTER_TMP(mod, base, ns)\
|
|
|
|
extern template class base;\
|
|
|
|
MODULE_REGISTER(mod, ARG(base), ns);
|
|
|
|
|
2018-09-29 17:55:19 +01:00
|
|
|
#define HADRONS_MACRO_REDIRECT_12(arg1, arg2, macro, ...) macro
|
|
|
|
#define HADRONS_MACRO_REDIRECT_23(arg1, arg2, arg3, macro, ...) macro
|
2016-12-14 17:59:45 +00:00
|
|
|
|
2018-09-29 17:55:19 +01:00
|
|
|
#define envGetGrid4(latticeType)\
|
|
|
|
env().template getGrid<typename latticeType::vector_type>()
|
2018-09-21 18:15:18 +01:00
|
|
|
|
2018-09-29 17:55:19 +01:00
|
|
|
#define envGetGrid5(latticeType, Ls)\
|
2018-09-21 18:15:18 +01:00
|
|
|
env().template getGrid<typename latticeType::vector_type>(Ls)
|
|
|
|
|
2018-09-29 17:55:19 +01:00
|
|
|
#define envGetGrid(...)\
|
|
|
|
HADRONS_MACRO_REDIRECT_12(__VA_ARGS__, envGetGrid5, envGetGrid4)(__VA_ARGS__)
|
|
|
|
|
2019-02-05 21:56:51 +00:00
|
|
|
#define envGetCoarseGrid4(latticeType, blockSize)\
|
|
|
|
env().template getCoarseGrid<typename latticeType::vector_type>(blockSize)
|
|
|
|
|
|
|
|
#define envGetCoarseGrid5(latticeType, blockSize, Ls)\
|
|
|
|
env().template getCoarseGrid<typename latticeType::vector_type>(blockSize, Ls)
|
|
|
|
|
|
|
|
#define envGetCoarseGrid(...)\
|
|
|
|
HADRONS_MACRO_REDIRECT_23(__VA_ARGS__, envGetCoarseGrid5, envGetCoarseGrid4)(__VA_ARGS__)
|
|
|
|
|
2018-09-29 17:55:19 +01:00
|
|
|
#define envGetRbGrid4(latticeType)\
|
|
|
|
env().template getRbGrid<typename latticeType::vector_type>()
|
|
|
|
|
|
|
|
#define envGetRbGrid5(latticeType, Ls)\
|
|
|
|
env().template getRbGrid<typename latticeType::vector_type>(Ls)
|
|
|
|
|
|
|
|
#define envGetRbGrid(...)\
|
|
|
|
HADRONS_MACRO_REDIRECT_12(__VA_ARGS__, envGetRbGrid5, envGetRbGrid4)(__VA_ARGS__)
|
|
|
|
|
2017-12-01 19:38:23 +00:00
|
|
|
#define envGet(type, name)\
|
2017-11-22 23:27:19 +00:00
|
|
|
*env().template getObject<type>(name)
|
|
|
|
|
2018-03-13 16:10:16 +00:00
|
|
|
#define envGetDerived(base, type, name)\
|
|
|
|
*env().template getDerivedObject<base, type>(name)
|
|
|
|
|
2017-12-13 19:41:41 +00:00
|
|
|
#define envGetTmp(type, var)\
|
|
|
|
type &var = *env().template getObject<type>(getName() + "_tmp_" + #var)
|
2017-12-01 19:38:23 +00:00
|
|
|
|
2017-12-03 18:45:15 +00:00
|
|
|
#define envHasType(type, name)\
|
|
|
|
env().template isObjectOfType<type>(name)
|
2017-12-01 19:38:23 +00:00
|
|
|
|
2017-12-06 15:51:48 +00:00
|
|
|
#define envCreate(type, name, Ls, ...)\
|
|
|
|
env().template createObject<type>(name, Environment::Storage::object, Ls, __VA_ARGS__)
|
|
|
|
|
|
|
|
#define envCreateDerived(base, type, name, Ls, ...)\
|
|
|
|
env().template createDerivedObject<base, type>(name, Environment::Storage::object, Ls, __VA_ARGS__)
|
2017-12-01 19:38:23 +00:00
|
|
|
|
|
|
|
#define envCreateLat4(type, name)\
|
2018-09-29 17:55:19 +01:00
|
|
|
envCreate(type, name, 1, envGetGrid(type))
|
2017-12-01 19:38:23 +00:00
|
|
|
|
|
|
|
#define envCreateLat5(type, name, Ls)\
|
2018-09-29 17:55:19 +01:00
|
|
|
envCreate(type, name, Ls, envGetGrid(type, Ls))
|
2017-12-01 19:38:23 +00:00
|
|
|
|
|
|
|
#define envCreateLat(...)\
|
2018-09-29 17:55:19 +01:00
|
|
|
HADRONS_MACRO_REDIRECT_23(__VA_ARGS__, envCreateLat5, envCreateLat4)(__VA_ARGS__)
|
2017-12-01 19:38:23 +00:00
|
|
|
|
2017-12-06 15:51:48 +00:00
|
|
|
#define envCache(type, name, Ls, ...)\
|
|
|
|
env().template createObject<type>(name, Environment::Storage::cache, Ls, __VA_ARGS__)
|
2017-12-01 19:38:23 +00:00
|
|
|
|
|
|
|
#define envCacheLat4(type, name)\
|
2018-09-29 17:55:19 +01:00
|
|
|
envCache(type, name, 1, envGetGrid(type))
|
2017-12-01 19:38:23 +00:00
|
|
|
|
|
|
|
#define envCacheLat5(type, name, Ls)\
|
2018-09-29 17:55:19 +01:00
|
|
|
envCache(type, name, Ls, envGetGrid(type, Ls))
|
2017-12-01 19:38:23 +00:00
|
|
|
|
|
|
|
#define envCacheLat(...)\
|
2018-09-29 17:55:19 +01:00
|
|
|
HADRONS_MACRO_REDIRECT_23(__VA_ARGS__, envCacheLat5, envCacheLat4)(__VA_ARGS__)
|
2017-12-01 19:38:23 +00:00
|
|
|
|
2017-12-06 15:51:48 +00:00
|
|
|
#define envTmp(type, name, Ls, ...)\
|
2017-12-01 19:38:23 +00:00
|
|
|
env().template createObject<type>(getName() + "_tmp_" + name, \
|
2017-12-06 15:51:48 +00:00
|
|
|
Environment::Storage::temporary, Ls, __VA_ARGS__)
|
2017-12-01 19:38:23 +00:00
|
|
|
|
|
|
|
#define envTmpLat4(type, name)\
|
2018-09-29 17:55:19 +01:00
|
|
|
envTmp(type, name, 1, envGetGrid(type))
|
2017-12-01 19:38:23 +00:00
|
|
|
|
|
|
|
#define envTmpLat5(type, name, Ls)\
|
2018-09-29 17:55:19 +01:00
|
|
|
envTmp(type, name, Ls, envGetGrid(type, Ls))
|
2017-12-01 19:38:23 +00:00
|
|
|
|
|
|
|
#define envTmpLat(...)\
|
2018-09-29 17:55:19 +01:00
|
|
|
HADRONS_MACRO_REDIRECT_23(__VA_ARGS__, envTmpLat5, envTmpLat4)(__VA_ARGS__)
|
2017-12-01 19:38:23 +00:00
|
|
|
|
2018-01-23 17:26:50 +00:00
|
|
|
#define saveResult(ioStem, name, result)\
|
2018-05-18 20:48:24 +01:00
|
|
|
if (env().getGrid()->IsBoss() and !ioStem.empty())\
|
2018-01-23 17:26:50 +00:00
|
|
|
{\
|
2018-05-07 19:43:40 +01:00
|
|
|
makeFileDir(ioStem, env().getGrid());\
|
2018-04-23 18:45:39 +01:00
|
|
|
{\
|
2018-11-19 15:45:04 +00:00
|
|
|
ResultWriter _writer(RESULT_FILE_NAME(ioStem, vm().getTrajectory()));\
|
2018-04-23 18:45:39 +01:00
|
|
|
write(_writer, name, result);\
|
2018-04-23 17:35:01 +01:00
|
|
|
}\
|
2018-01-23 17:26:50 +00:00
|
|
|
}
|
|
|
|
|
2015-12-23 14:21:35 +00:00
|
|
|
/******************************************************************************
|
2016-05-12 12:49:49 +01:00
|
|
|
* Module class *
|
2015-12-23 14:21:35 +00:00
|
|
|
******************************************************************************/
|
2016-05-12 12:49:49 +01:00
|
|
|
// base class
|
2018-10-04 20:01:49 +01:00
|
|
|
class ModuleBase: public TimerArray
|
2015-12-23 14:21:35 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
// constructor
|
2016-05-12 11:59:28 +01:00
|
|
|
ModuleBase(const std::string name);
|
2015-12-23 14:21:35 +00:00
|
|
|
// destructor
|
2016-05-12 11:59:28 +01:00
|
|
|
virtual ~ModuleBase(void) = default;
|
2015-12-23 14:21:35 +00:00
|
|
|
// access
|
|
|
|
std::string getName(void) const;
|
2016-12-14 17:59:45 +00:00
|
|
|
// get factory registration name if available
|
|
|
|
virtual std::string getRegisteredName(void);
|
2016-05-04 00:30:29 +01:00
|
|
|
// dependencies/products
|
2015-12-23 14:21:35 +00:00
|
|
|
virtual std::vector<std::string> getInput(void) = 0;
|
2017-12-19 20:28:04 +00:00
|
|
|
virtual std::vector<std::string> getReference(void)
|
|
|
|
{
|
|
|
|
return std::vector<std::string>(0);
|
|
|
|
};
|
2015-12-23 14:21:35 +00:00
|
|
|
virtual std::vector<std::string> getOutput(void) = 0;
|
2016-05-12 11:59:28 +01:00
|
|
|
// parse parameters
|
|
|
|
virtual void parseParameters(XmlReader &reader, const std::string name) = 0;
|
2016-12-14 18:01:56 +00:00
|
|
|
virtual void saveParameters(XmlWriter &writer, const std::string name) = 0;
|
2018-04-04 16:36:37 +01:00
|
|
|
// parameter string
|
|
|
|
virtual std::string parString(void) const = 0;
|
2017-12-03 18:46:18 +00:00
|
|
|
// setup
|
|
|
|
virtual void setup(void) {};
|
2016-05-05 03:11:03 +01:00
|
|
|
virtual void execute(void) = 0;
|
2017-12-12 19:32:58 +00:00
|
|
|
// execution
|
|
|
|
void operator()(void);
|
|
|
|
protected:
|
2017-12-05 14:31:59 +00:00
|
|
|
// environment shortcut
|
|
|
|
DEFINE_ENV_ALIAS;
|
|
|
|
// virtual machine shortcut
|
|
|
|
DEFINE_VM_ALIAS;
|
2018-08-10 18:27:00 +01:00
|
|
|
// RNG seeded from module string
|
|
|
|
GridParallelRNG &rng4d(void);
|
2015-12-23 14:21:35 +00:00
|
|
|
private:
|
2018-08-10 18:27:00 +01:00
|
|
|
std::string makeSeedString(void);
|
|
|
|
private:
|
|
|
|
std::string name_, currentTimer_, seed_;
|
2018-08-10 16:07:30 +01:00
|
|
|
std::map<std::string, GridStopWatch> timer_;
|
2015-12-23 14:21:35 +00:00
|
|
|
};
|
|
|
|
|
2016-05-12 12:49:49 +01:00
|
|
|
// derived class, templating the parameter class
|
2016-05-12 11:59:28 +01:00
|
|
|
template <typename P>
|
|
|
|
class Module: public ModuleBase
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
typedef P Par;
|
|
|
|
public:
|
|
|
|
// constructor
|
|
|
|
Module(const std::string name);
|
|
|
|
// destructor
|
|
|
|
virtual ~Module(void) = default;
|
|
|
|
// parse parameters
|
|
|
|
virtual void parseParameters(XmlReader &reader, const std::string name);
|
2016-12-14 18:01:56 +00:00
|
|
|
virtual void saveParameters(XmlWriter &writer, const std::string name);
|
2018-04-04 16:36:37 +01:00
|
|
|
// parameter string
|
|
|
|
virtual std::string parString(void) const;
|
2016-05-12 11:59:28 +01:00
|
|
|
// parameter access
|
2018-04-04 16:36:37 +01:00
|
|
|
const P & par(void) const;
|
|
|
|
void setPar(const P &par);
|
2016-05-12 11:59:28 +01:00
|
|
|
private:
|
|
|
|
P par_;
|
|
|
|
};
|
|
|
|
|
2016-05-12 12:49:49 +01:00
|
|
|
// no parameter type
|
2016-06-06 17:45:37 +01:00
|
|
|
class NoPar {};
|
|
|
|
|
|
|
|
template <>
|
|
|
|
class Module<NoPar>: public ModuleBase
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
// constructor
|
|
|
|
Module(const std::string name): ModuleBase(name) {};
|
|
|
|
// destructor
|
|
|
|
virtual ~Module(void) = default;
|
|
|
|
// parse parameters (do nothing)
|
|
|
|
virtual void parseParameters(XmlReader &reader, const std::string name) {};
|
2016-12-14 18:01:56 +00:00
|
|
|
virtual void saveParameters(XmlWriter &writer, const std::string name)
|
|
|
|
{
|
|
|
|
push(writer, "options");
|
|
|
|
pop(writer);
|
|
|
|
};
|
2018-04-04 16:36:37 +01:00
|
|
|
// parameter string (empty)
|
|
|
|
virtual std::string parString(void) const {return "";};
|
2016-06-06 17:45:37 +01:00
|
|
|
};
|
2016-05-12 12:49:49 +01:00
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* Template implementation *
|
|
|
|
******************************************************************************/
|
2016-05-12 11:59:28 +01:00
|
|
|
template <typename P>
|
|
|
|
Module<P>::Module(const std::string name)
|
|
|
|
: ModuleBase(name)
|
|
|
|
{}
|
|
|
|
|
|
|
|
template <typename P>
|
|
|
|
void Module<P>::parseParameters(XmlReader &reader, const std::string name)
|
|
|
|
{
|
2016-11-10 18:38:30 +00:00
|
|
|
read(reader, name, par_);
|
2016-05-12 11:59:28 +01:00
|
|
|
}
|
|
|
|
|
2016-12-14 18:01:56 +00:00
|
|
|
template <typename P>
|
|
|
|
void Module<P>::saveParameters(XmlWriter &writer, const std::string name)
|
|
|
|
{
|
|
|
|
write(writer, name, par_);
|
|
|
|
}
|
|
|
|
|
2018-04-04 16:36:37 +01:00
|
|
|
template <typename P>
|
|
|
|
std::string Module<P>::parString(void) const
|
|
|
|
{
|
2018-04-06 19:29:53 +01:00
|
|
|
XmlWriter writer("", "");
|
2018-04-04 16:36:37 +01:00
|
|
|
|
2018-04-06 19:29:53 +01:00
|
|
|
write(writer, par_.SerialisableClassName(), par_);
|
2018-04-04 16:36:37 +01:00
|
|
|
|
2018-04-06 19:29:53 +01:00
|
|
|
return writer.string();
|
2018-04-04 16:36:37 +01:00
|
|
|
}
|
|
|
|
|
2016-05-12 11:59:28 +01:00
|
|
|
template <typename P>
|
|
|
|
const P & Module<P>::par(void) const
|
|
|
|
{
|
|
|
|
return par_;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename P>
|
|
|
|
void Module<P>::setPar(const P &par)
|
|
|
|
{
|
|
|
|
par_ = par;
|
|
|
|
}
|
|
|
|
|
2015-12-23 14:21:35 +00:00
|
|
|
END_HADRONS_NAMESPACE
|
|
|
|
|
|
|
|
#endif // Hadrons_Module_hpp_
|