mirror of
https://github.com/paboyle/Grid.git
synced 2025-04-27 14:15:55 +01:00
Hadrons: module generating random lattices for testing purposes
This commit is contained in:
parent
d0244a059f
commit
2b794b6aa7
@ -27,6 +27,7 @@
|
|||||||
#include <Grid/Hadrons/Modules/MGauge/FundtoHirep.hpp>
|
#include <Grid/Hadrons/Modules/MGauge/FundtoHirep.hpp>
|
||||||
#include <Grid/Hadrons/Modules/MGauge/StochEm.hpp>
|
#include <Grid/Hadrons/Modules/MGauge/StochEm.hpp>
|
||||||
#include <Grid/Hadrons/Modules/MNoise/TimeDilutedSpinColorDiagonal.hpp>
|
#include <Grid/Hadrons/Modules/MNoise/TimeDilutedSpinColorDiagonal.hpp>
|
||||||
|
#include <Grid/Hadrons/Modules/MUtilities/RandomVectors.hpp>
|
||||||
#include <Grid/Hadrons/Modules/MUtilities/TestSeqGamma.hpp>
|
#include <Grid/Hadrons/Modules/MUtilities/TestSeqGamma.hpp>
|
||||||
#include <Grid/Hadrons/Modules/MUtilities/TestSeqConserved.hpp>
|
#include <Grid/Hadrons/Modules/MUtilities/TestSeqConserved.hpp>
|
||||||
#include <Grid/Hadrons/Modules/MLoop/NoiseLoop.hpp>
|
#include <Grid/Hadrons/Modules/MLoop/NoiseLoop.hpp>
|
||||||
|
7
extras/Hadrons/Modules/MUtilities/RandomVectors.cc
Normal file
7
extras/Hadrons/Modules/MUtilities/RandomVectors.cc
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
#include <Grid/Hadrons/Modules/MUtilities/RandomVectors.hpp>
|
||||||
|
|
||||||
|
using namespace Grid;
|
||||||
|
using namespace Hadrons;
|
||||||
|
using namespace MUtilities;
|
||||||
|
|
||||||
|
template class Grid::Hadrons::MUtilities::TRandomVectors<FIMPL::FermionField>;
|
94
extras/Hadrons/Modules/MUtilities/RandomVectors.hpp
Normal file
94
extras/Hadrons/Modules/MUtilities/RandomVectors.hpp
Normal file
@ -0,0 +1,94 @@
|
|||||||
|
#ifndef Hadrons_MUtilities_RandomVectors_hpp_
|
||||||
|
#define Hadrons_MUtilities_RandomVectors_hpp_
|
||||||
|
|
||||||
|
#include <Grid/Hadrons/Global.hpp>
|
||||||
|
#include <Grid/Hadrons/Module.hpp>
|
||||||
|
#include <Grid/Hadrons/ModuleFactory.hpp>
|
||||||
|
|
||||||
|
BEGIN_HADRONS_NAMESPACE
|
||||||
|
|
||||||
|
/******************************************************************************
|
||||||
|
* Module generating random lattices for testing purposes *
|
||||||
|
******************************************************************************/
|
||||||
|
BEGIN_MODULE_NAMESPACE(MUtilities)
|
||||||
|
|
||||||
|
class RandomVectorsPar: Serializable
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
GRID_SERIALIZABLE_CLASS_MEMBERS(RandomVectorsPar,
|
||||||
|
unsigned int, size,
|
||||||
|
unsigned int, Ls);
|
||||||
|
};
|
||||||
|
|
||||||
|
template <typename Field>
|
||||||
|
class TRandomVectors: public Module<RandomVectorsPar>
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
// constructor
|
||||||
|
TRandomVectors(const std::string name);
|
||||||
|
// destructor
|
||||||
|
virtual ~TRandomVectors(void) {};
|
||||||
|
// 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);
|
||||||
|
};
|
||||||
|
|
||||||
|
MODULE_REGISTER_TMP(RandomFermions, TRandomVectors<FIMPL::FermionField>, MUtilities);
|
||||||
|
|
||||||
|
/******************************************************************************
|
||||||
|
* TRandomVectors implementation *
|
||||||
|
******************************************************************************/
|
||||||
|
// constructor /////////////////////////////////////////////////////////////////
|
||||||
|
template <typename Field>
|
||||||
|
TRandomVectors<Field>::TRandomVectors(const std::string name)
|
||||||
|
: Module<RandomVectorsPar>(name)
|
||||||
|
{}
|
||||||
|
|
||||||
|
// dependencies/products ///////////////////////////////////////////////////////
|
||||||
|
template <typename Field>
|
||||||
|
std::vector<std::string> TRandomVectors<Field>::getInput(void)
|
||||||
|
{
|
||||||
|
std::vector<std::string> in;
|
||||||
|
|
||||||
|
return in;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename Field>
|
||||||
|
std::vector<std::string> TRandomVectors<Field>::getOutput(void)
|
||||||
|
{
|
||||||
|
std::vector<std::string> out = {getName()};
|
||||||
|
|
||||||
|
return out;
|
||||||
|
}
|
||||||
|
|
||||||
|
// setup ///////////////////////////////////////////////////////////////////////
|
||||||
|
template <typename Field>
|
||||||
|
void TRandomVectors<Field>::setup(void)
|
||||||
|
{
|
||||||
|
envCreate(std::vector<Field>, getName(), par().Ls, par().size,
|
||||||
|
env().getGrid(par().Ls));
|
||||||
|
}
|
||||||
|
|
||||||
|
// execution ///////////////////////////////////////////////////////////////////
|
||||||
|
template <typename Field>
|
||||||
|
void TRandomVectors<Field>::execute(void)
|
||||||
|
{
|
||||||
|
LOG(Message) << "Generating " << par().size << " random vectors" << std::endl;
|
||||||
|
|
||||||
|
auto &vec = envGet(std::vector<Field>, getName());
|
||||||
|
|
||||||
|
for (unsigned int i = 0; i < vec.size(); ++i)
|
||||||
|
{
|
||||||
|
random(*env().get4dRng(), vec[i]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
END_MODULE_NAMESPACE
|
||||||
|
|
||||||
|
END_HADRONS_NAMESPACE
|
||||||
|
|
||||||
|
#endif // Hadrons_MUtilities_RandomVectors_hpp_
|
@ -27,6 +27,7 @@ modules_cc =\
|
|||||||
Modules/MGauge/Random.cc \
|
Modules/MGauge/Random.cc \
|
||||||
Modules/MGauge/FundtoHirep.cc \
|
Modules/MGauge/FundtoHirep.cc \
|
||||||
Modules/MNoise/TimeDilutedSpinColorDiagonal.cc \
|
Modules/MNoise/TimeDilutedSpinColorDiagonal.cc \
|
||||||
|
Modules/MUtilities/RandomVectors.cc \
|
||||||
Modules/MUtilities/TestSeqGamma.cc \
|
Modules/MUtilities/TestSeqGamma.cc \
|
||||||
Modules/MUtilities/TestSeqConserved.cc \
|
Modules/MUtilities/TestSeqConserved.cc \
|
||||||
Modules/MLoop/NoiseLoop.cc \
|
Modules/MLoop/NoiseLoop.cc \
|
||||||
@ -87,6 +88,7 @@ modules_hpp =\
|
|||||||
Modules/MGauge/FundtoHirep.hpp \
|
Modules/MGauge/FundtoHirep.hpp \
|
||||||
Modules/MGauge/StochEm.hpp \
|
Modules/MGauge/StochEm.hpp \
|
||||||
Modules/MNoise/TimeDilutedSpinColorDiagonal.hpp \
|
Modules/MNoise/TimeDilutedSpinColorDiagonal.hpp \
|
||||||
|
Modules/MUtilities/RandomVectors.hpp \
|
||||||
Modules/MUtilities/TestSeqGamma.hpp \
|
Modules/MUtilities/TestSeqGamma.hpp \
|
||||||
Modules/MUtilities/TestSeqConserved.hpp \
|
Modules/MUtilities/TestSeqConserved.hpp \
|
||||||
Modules/MLoop/NoiseLoop.hpp \
|
Modules/MLoop/NoiseLoop.hpp \
|
||||||
|
Loading…
x
Reference in New Issue
Block a user