2018-03-14 14:54:25 +00:00
|
|
|
/*************************************************************************************
|
|
|
|
|
|
|
|
Grid physics library, www.github.com/paboyle/Grid
|
|
|
|
|
2018-09-01 21:30:30 +01:00
|
|
|
Source file: Hadrons/Modules/MIO/LoadEigenPack.hpp
|
2018-03-14 14:54:25 +00:00
|
|
|
|
|
|
|
Copyright (C) 2015-2018
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
See the full license in the file "LICENSE" in the top level distribution directory
|
|
|
|
*************************************************************************************/
|
|
|
|
/* END LEGAL */
|
|
|
|
#ifndef Hadrons_MIO_LoadEigenPack_hpp_
|
|
|
|
#define Hadrons_MIO_LoadEigenPack_hpp_
|
|
|
|
|
2018-08-28 15:00:40 +01:00
|
|
|
#include <Hadrons/Global.hpp>
|
|
|
|
#include <Hadrons/Module.hpp>
|
|
|
|
#include <Hadrons/ModuleFactory.hpp>
|
|
|
|
#include <Hadrons/EigenPack.hpp>
|
2018-03-14 14:54:25 +00:00
|
|
|
|
|
|
|
BEGIN_HADRONS_NAMESPACE
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* Load eigen vectors/values package *
|
|
|
|
******************************************************************************/
|
|
|
|
BEGIN_MODULE_NAMESPACE(MIO)
|
|
|
|
|
|
|
|
class LoadEigenPackPar: Serializable
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
GRID_SERIALIZABLE_CLASS_MEMBERS(LoadEigenPackPar,
|
|
|
|
std::string, filestem,
|
2018-05-07 17:25:36 +01:00
|
|
|
bool, multiFile,
|
2018-03-14 14:54:25 +00:00
|
|
|
unsigned int, size,
|
|
|
|
unsigned int, Ls);
|
|
|
|
};
|
|
|
|
|
|
|
|
template <typename Pack>
|
|
|
|
class TLoadEigenPack: public Module<LoadEigenPackPar>
|
|
|
|
{
|
|
|
|
public:
|
2018-10-03 14:45:01 +01:00
|
|
|
typedef typename Pack::Field Field;
|
|
|
|
typedef typename Pack::FieldIo FieldIo;
|
|
|
|
typedef BaseEigenPack<Field> BasePack;
|
2018-03-14 14:54:25 +00:00
|
|
|
public:
|
|
|
|
// constructor
|
|
|
|
TLoadEigenPack(const std::string name);
|
|
|
|
// destructor
|
2018-04-24 17:20:25 +01:00
|
|
|
virtual ~TLoadEigenPack(void) {};
|
2018-03-14 14:54:25 +00:00
|
|
|
// dependency relation
|
|
|
|
virtual std::vector<std::string> getInput(void);
|
|
|
|
virtual std::vector<std::string> getOutput(void);
|
|
|
|
// setup
|
|
|
|
virtual void setup(void);
|
|
|
|
// execution
|
|
|
|
virtual void execute(void);
|
|
|
|
};
|
|
|
|
|
2018-04-23 17:35:01 +01:00
|
|
|
MODULE_REGISTER_TMP(LoadFermionEigenPack, TLoadEigenPack<FermionEigenPack<FIMPL>>, MIO);
|
2018-10-18 23:45:13 +01:00
|
|
|
#ifdef GRID_DEFAULT_PRECISION_DOUBLE
|
2018-10-02 21:07:56 +01:00
|
|
|
MODULE_REGISTER_TMP(LoadFermionEigenPackIo32, ARG(TLoadEigenPack<FermionEigenPack<FIMPL, FIMPLF>>), MIO);
|
2018-10-18 23:45:13 +01:00
|
|
|
#endif
|
2018-03-14 14:54:25 +00:00
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* TLoadEigenPack implementation *
|
|
|
|
******************************************************************************/
|
|
|
|
// constructor /////////////////////////////////////////////////////////////////
|
|
|
|
template <typename Pack>
|
|
|
|
TLoadEigenPack<Pack>::TLoadEigenPack(const std::string name)
|
|
|
|
: Module<LoadEigenPackPar>(name)
|
|
|
|
{}
|
|
|
|
|
|
|
|
// dependencies/products ///////////////////////////////////////////////////////
|
|
|
|
template <typename Pack>
|
|
|
|
std::vector<std::string> TLoadEigenPack<Pack>::getInput(void)
|
|
|
|
{
|
|
|
|
std::vector<std::string> in;
|
|
|
|
|
|
|
|
return in;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename Pack>
|
|
|
|
std::vector<std::string> TLoadEigenPack<Pack>::getOutput(void)
|
|
|
|
{
|
|
|
|
std::vector<std::string> out = {getName()};
|
|
|
|
|
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
|
|
|
// setup ///////////////////////////////////////////////////////////////////////
|
|
|
|
template <typename Pack>
|
|
|
|
void TLoadEigenPack<Pack>::setup(void)
|
|
|
|
{
|
2018-10-03 14:24:43 +01:00
|
|
|
GridBase *gridIo = nullptr;
|
|
|
|
|
|
|
|
if (typeHash<Field>() != typeHash<FieldIo>())
|
|
|
|
{
|
|
|
|
gridIo = envGetRbGrid(FieldIo, par().Ls);
|
|
|
|
}
|
2018-03-14 14:54:25 +00:00
|
|
|
envCreateDerived(BasePack, Pack, getName(), par().Ls, par().size,
|
2018-10-03 14:24:43 +01:00
|
|
|
envGetRbGrid(Field, par().Ls), gridIo);
|
2018-03-14 14:54:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// execution ///////////////////////////////////////////////////////////////////
|
|
|
|
template <typename Pack>
|
|
|
|
void TLoadEigenPack<Pack>::execute(void)
|
|
|
|
{
|
|
|
|
auto &epack = envGetDerived(BasePack, Pack, getName());
|
|
|
|
|
2018-05-07 17:25:36 +01:00
|
|
|
epack.read(par().filestem, par().multiFile, vm().getTrajectory());
|
2018-04-06 13:48:58 +01:00
|
|
|
epack.eval.resize(par().size);
|
2018-03-14 14:54:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
END_MODULE_NAMESPACE
|
|
|
|
|
|
|
|
END_HADRONS_NAMESPACE
|
|
|
|
|
|
|
|
#endif // Hadrons_MIO_LoadEigenPack_hpp_
|