2017-01-25 18:09:46 +00:00
|
|
|
/*************************************************************************************
|
|
|
|
|
|
|
|
Grid physics library, www.github.com/paboyle/Grid
|
|
|
|
|
|
|
|
Source file: ./lib/qcd/hmc/HMC_GridModules.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 HMC_GRID_MODULES
|
|
|
|
#define HMC_GRID_MODULES
|
|
|
|
|
|
|
|
namespace Grid {
|
|
|
|
|
|
|
|
// Resources
|
|
|
|
// Modules for grids
|
|
|
|
|
2017-02-20 11:17:27 +00:00
|
|
|
// Introduce another namespace HMCModules?
|
|
|
|
|
|
|
|
class GridModuleParameters: Serializable{
|
|
|
|
public:
|
2017-01-25 18:09:46 +00:00
|
|
|
GRID_SERIALIZABLE_CLASS_MEMBERS(GridModuleParameters,
|
|
|
|
std::string, lattice,
|
2017-02-20 11:17:27 +00:00
|
|
|
std::string, mpi);
|
2017-01-25 18:09:46 +00:00
|
|
|
|
2017-02-20 11:17:27 +00:00
|
|
|
std::vector<int> getLattice(){return strToVec<int>(lattice);}
|
|
|
|
std::vector<int> getMpi() {return strToVec<int>(mpi);}
|
2017-01-25 18:09:46 +00:00
|
|
|
|
2017-02-20 11:17:27 +00:00
|
|
|
void check(){
|
|
|
|
if (getLattice().size() != getMpi().size()) {
|
|
|
|
std::cout << GridLogError
|
|
|
|
<< "Error in GridModuleParameters: lattice and mpi dimensions "
|
2017-01-25 18:09:46 +00:00
|
|
|
"do not match"
|
|
|
|
<< std::endl;
|
|
|
|
exit(1);
|
|
|
|
}
|
2017-02-20 11:17:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template <class ReaderClass>
|
2017-02-21 11:30:57 +00:00
|
|
|
GridModuleParameters(Reader<ReaderClass>& Reader, std::string n = "LatticeGrid"):name(n) {
|
2017-02-20 11:17:27 +00:00
|
|
|
read(Reader, name, *this);
|
|
|
|
check();
|
2017-01-25 18:09:46 +00:00
|
|
|
}
|
2017-02-20 11:17:27 +00:00
|
|
|
|
|
|
|
// Save on file
|
|
|
|
template< class WriterClass>
|
|
|
|
void save(Writer<WriterClass>& Writer){
|
|
|
|
check();
|
|
|
|
write(Writer, name, *this);
|
|
|
|
}
|
|
|
|
private:
|
2017-02-21 11:30:57 +00:00
|
|
|
std::string name;
|
2017-01-25 18:09:46 +00:00
|
|
|
};
|
|
|
|
|
2017-02-20 11:17:27 +00:00
|
|
|
// Lower level class
|
2017-01-25 18:09:46 +00:00
|
|
|
class GridModule {
|
|
|
|
public:
|
|
|
|
GridCartesian* get_full() {
|
|
|
|
std::cout << GridLogDebug << "Getting cartesian in module"<< std::endl;
|
|
|
|
return grid_.get(); }
|
|
|
|
GridRedBlackCartesian* get_rb() {
|
|
|
|
std::cout << GridLogDebug << "Getting rb-cartesian in module"<< std::endl;
|
|
|
|
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-02-20 11:17:27 +00:00
|
|
|
////////////////////////////////////
|
|
|
|
// Classes for the user
|
|
|
|
////////////////////////////////////
|
2017-02-21 11:30:57 +00:00
|
|
|
// Note: the space time grid should be out of the QCD namespace
|
2017-02-20 11:17:27 +00:00
|
|
|
template< class vector_type>
|
2017-01-25 18:09:46 +00:00
|
|
|
class GridFourDimModule : public GridModule {
|
|
|
|
public:
|
|
|
|
GridFourDimModule() {
|
2017-02-20 11:17:27 +00:00
|
|
|
using namespace QCD;
|
2017-01-25 18:09:46 +00:00
|
|
|
set_full(SpaceTimeGrid::makeFourDimGrid(
|
2017-02-20 11:17:27 +00:00
|
|
|
GridDefaultLatt(), GridDefaultSimd(4, vector_type::Nsimd()),
|
2017-01-25 18:09:46 +00:00
|
|
|
GridDefaultMpi()));
|
|
|
|
set_rb(SpaceTimeGrid::makeFourDimRedBlackGrid(grid_.get()));
|
|
|
|
}
|
|
|
|
|
|
|
|
GridFourDimModule(GridModuleParameters Params) {
|
2017-02-20 11:17:27 +00:00
|
|
|
using namespace QCD;
|
|
|
|
Params.check();
|
|
|
|
std::vector<int> lattice_v = Params.getLattice();
|
|
|
|
std::vector<int> mpi_v = Params.getMpi();
|
|
|
|
if (lattice_v.size() == 4) {
|
2017-01-25 18:09:46 +00:00
|
|
|
set_full(SpaceTimeGrid::makeFourDimGrid(
|
2017-02-20 11:17:27 +00:00
|
|
|
lattice_v, GridDefaultSimd(4, vector_type::Nsimd()),
|
|
|
|
mpi_v));
|
2017-01-25 18:09:46 +00:00
|
|
|
set_rb(SpaceTimeGrid::makeFourDimRedBlackGrid(grid_.get()));
|
|
|
|
} else {
|
2017-02-20 11:17:27 +00:00
|
|
|
std::cout << GridLogError
|
2017-01-25 18:09:46 +00:00
|
|
|
<< "Error in GridFourDimModule: lattice dimension different from 4"
|
|
|
|
<< std::endl;
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-02-20 11:17:27 +00:00
|
|
|
typedef GridFourDimModule<vComplex> GridDefaultFourDimModule;
|
2017-01-25 18:09:46 +00:00
|
|
|
|
|
|
|
|
|
|
|
} // namespace Grid
|
|
|
|
|
|
|
|
#endif // HMC_GRID_MODULES
|