2016-12-22 12:41:56 +00:00
|
|
|
/*************************************************************************************
|
|
|
|
|
|
|
|
Grid physics library, www.github.com/paboyle/Grid
|
|
|
|
|
|
|
|
Source file: ./lib/qcd/hmc/GenericHmcRunner.h
|
|
|
|
|
|
|
|
Copyright (C) 2015
|
|
|
|
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 GRID_HMC_MODULES
|
|
|
|
#define GRID_HMC_MODULES
|
|
|
|
|
|
|
|
namespace Grid {
|
|
|
|
namespace QCD {
|
|
|
|
|
2017-01-16 10:18:09 +00:00
|
|
|
|
2017-01-16 16:07:12 +00:00
|
|
|
// Some modules for the basic setup
|
2017-01-16 10:18:09 +00:00
|
|
|
|
|
|
|
|
2016-12-22 12:41:56 +00:00
|
|
|
///////////////////////////////////////////////////
|
|
|
|
// Modules
|
2017-01-16 10:18:09 +00:00
|
|
|
class GridModuleParameters: Serializable{
|
|
|
|
|
|
|
|
GRID_SERIALIZABLE_CLASS_MEMBERS(GridModuleParameters,
|
|
|
|
std::string, lattice,
|
|
|
|
std::string, mpi);
|
|
|
|
|
|
|
|
public:
|
|
|
|
// these namings are ugly
|
|
|
|
// also ugly the distinction between the serializable members
|
|
|
|
// and this
|
|
|
|
std::vector<int> lattice_v;
|
|
|
|
std::vector<int> mpi_v;
|
|
|
|
|
|
|
|
GridModuleParameters(const std::vector<int> l_ = std::vector<int>(),
|
|
|
|
const std::vector<int> mpi_ = std::vector<int>()):lattice_v(l_), mpi_v(mpi_){}
|
|
|
|
|
|
|
|
template <class ReaderClass>
|
|
|
|
GridModuleParameters(Reader<ReaderClass>& Reader) {
|
|
|
|
read(Reader, "LatticeGrid", *this);
|
|
|
|
lattice_v = strToVec<int>(lattice);
|
|
|
|
mpi_v = strToVec<int>(mpi);
|
|
|
|
if (mpi_v.size() != lattice_v.size()) {
|
|
|
|
std::cout << "Error in GridModuleParameters: lattice and mpi dimensions "
|
|
|
|
"do not match"
|
|
|
|
<< std::endl;
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-12-22 12:41:56 +00:00
|
|
|
class GridModule {
|
|
|
|
public:
|
|
|
|
GridCartesian* get_full() { return grid_.get(); }
|
|
|
|
GridRedBlackCartesian* get_rb() { return rbgrid_.get(); }
|
|
|
|
|
|
|
|
void set_full(GridCartesian* grid) { grid_.reset(grid); }
|
|
|
|
void set_rb(GridRedBlackCartesian* rbgrid) { rbgrid_.reset(rbgrid); }
|
|
|
|
|
|
|
|
protected:
|
|
|
|
std::unique_ptr<GridCartesian> grid_;
|
|
|
|
std::unique_ptr<GridRedBlackCartesian> rbgrid_;
|
2017-01-16 10:18:09 +00:00
|
|
|
|
2016-12-22 12:41:56 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// helpers
|
|
|
|
class GridFourDimModule : public GridModule {
|
|
|
|
public:
|
2017-01-16 10:18:09 +00:00
|
|
|
// add a function to create the module from a Reader
|
2016-12-22 12:41:56 +00:00
|
|
|
GridFourDimModule() {
|
|
|
|
set_full(SpaceTimeGrid::makeFourDimGrid(
|
|
|
|
GridDefaultLatt(), GridDefaultSimd(4, vComplex::Nsimd()),
|
|
|
|
GridDefaultMpi()));
|
|
|
|
set_rb(SpaceTimeGrid::makeFourDimRedBlackGrid(grid_.get()));
|
|
|
|
}
|
|
|
|
|
2017-01-16 10:18:09 +00:00
|
|
|
template <class vector_type = vComplex>
|
|
|
|
GridFourDimModule(GridModuleParameters Params) {
|
|
|
|
if (Params.lattice_v.size() == 4) {
|
|
|
|
set_full(SpaceTimeGrid::makeFourDimGrid(
|
|
|
|
Params.lattice_v, GridDefaultSimd(4, vector_type::Nsimd()),
|
|
|
|
Params.mpi_v));
|
|
|
|
set_rb(SpaceTimeGrid::makeFourDimRedBlackGrid(grid_.get()));
|
|
|
|
} else {
|
|
|
|
std::cout
|
|
|
|
<< "Error in GridFourDimModule: lattice dimension different from 4"
|
|
|
|
<< std::endl;
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
}
|
2016-12-22 12:41:56 +00:00
|
|
|
};
|
|
|
|
|
2017-01-09 11:06:18 +00:00
|
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
class RNGModuleParameters: Serializable {
|
|
|
|
|
2017-01-16 10:18:09 +00:00
|
|
|
GRID_SERIALIZABLE_CLASS_MEMBERS(RNGModuleParameters,
|
|
|
|
std::string, serial_seeds,
|
|
|
|
std::string, parallel_seeds,);
|
|
|
|
public:
|
|
|
|
std::vector<int> SerialSeed;
|
|
|
|
std::vector<int> ParallelSeed;
|
2017-01-09 11:06:18 +00:00
|
|
|
|
2017-01-16 10:18:09 +00:00
|
|
|
RNGModuleParameters(const std::vector<int> S = std::vector<int>(),
|
|
|
|
const std::vector<int> P = std::vector<int>())
|
|
|
|
: SerialSeed(S), ParallelSeed(P) {}
|
2017-01-09 11:06:18 +00:00
|
|
|
|
|
|
|
|
2017-01-16 10:18:09 +00:00
|
|
|
template <class ReaderClass >
|
|
|
|
RNGModuleParameters(Reader<ReaderClass>& Reader){
|
|
|
|
read(Reader, "RandomNumberGenerator", *this);
|
|
|
|
SerialSeed = strToVec<int>(serial_seeds);
|
|
|
|
ParallelSeed = strToVec<int>(parallel_seeds);
|
2017-01-09 11:06:18 +00:00
|
|
|
}
|
2017-01-16 10:18:09 +00:00
|
|
|
|
2017-01-09 11:06:18 +00:00
|
|
|
};
|
|
|
|
|
2017-01-16 10:18:09 +00:00
|
|
|
// Random number generators module
|
2016-12-22 12:41:56 +00:00
|
|
|
class RNGModule{
|
|
|
|
GridSerialRNG sRNG_;
|
|
|
|
std::unique_ptr<GridParallelRNG> pRNG_;
|
2017-01-09 11:06:18 +00:00
|
|
|
RNGModuleParameters Params_;
|
2016-12-22 12:41:56 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
|
2017-01-09 11:06:18 +00:00
|
|
|
RNGModule(){};
|
|
|
|
|
|
|
|
void set_pRNG(GridParallelRNG* pRNG){
|
|
|
|
pRNG_.reset(pRNG);
|
|
|
|
}
|
|
|
|
|
2017-01-16 10:18:09 +00:00
|
|
|
void set_RNGSeeds(RNGModuleParameters& Params) {
|
|
|
|
Params_ = Params;
|
2017-01-09 11:06:18 +00:00
|
|
|
}
|
|
|
|
|
2017-01-16 10:18:09 +00:00
|
|
|
GridSerialRNG& get_sRNG() { return sRNG_; }
|
|
|
|
GridParallelRNG& get_pRNG() { return *pRNG_.get(); }
|
2017-01-09 11:06:18 +00:00
|
|
|
|
2017-01-16 10:18:09 +00:00
|
|
|
void seed() {
|
|
|
|
if (Params_.SerialSeed.size() == 0 && Params_.ParallelSeed.size() == 0) {
|
|
|
|
std::cout << "Seeds not initialized" << std::endl;
|
2017-01-09 11:06:18 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
2017-01-16 10:18:09 +00:00
|
|
|
sRNG_.SeedFixedIntegers(Params_.SerialSeed);
|
|
|
|
pRNG_->SeedFixedIntegers(Params_.ParallelSeed);
|
2016-12-22 12:41:56 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-01-16 16:07:12 +00:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
2017-01-09 11:06:18 +00:00
|
|
|
///////////////////////////////////////////////////////////////////
|
2017-01-05 13:09:32 +00:00
|
|
|
/// Smearing module
|
|
|
|
template <class ImplementationPolicy>
|
|
|
|
class SmearingModule{
|
|
|
|
virtual void get_smearing();
|
|
|
|
};
|
|
|
|
|
|
|
|
template <class ImplementationPolicy>
|
|
|
|
class StoutSmearingModule: public SmearingModule<ImplementationPolicy>{
|
|
|
|
SmearedConfiguration<ImplementationPolicy> SmearingPolicy;
|
|
|
|
};
|
|
|
|
|
2017-01-16 16:07:12 +00:00
|
|
|
*/
|
2017-01-09 11:06:18 +00:00
|
|
|
|
2016-12-22 12:41:56 +00:00
|
|
|
|
|
|
|
|
|
|
|
} // namespace QCD
|
|
|
|
} // namespace Grid
|
|
|
|
|
|
|
|
#endif // GRID_HMC_MODULES
|