mirror of
https://github.com/paboyle/Grid.git
synced 2025-04-04 11:15:55 +01:00
Added high level HMC support for overriding default SIMD lane decomposition
This commit is contained in:
parent
175f393f9d
commit
4fe182e5a7
@ -185,17 +185,18 @@ public:
|
|||||||
////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
void show_decomposition(){
|
void show_decomposition(){
|
||||||
std::cout << GridLogMessage << "Full Dimensions : " << _fdimensions << std::endl;
|
std::cout << GridLogMessage << "\tFull Dimensions : " << _fdimensions << std::endl;
|
||||||
std::cout << GridLogMessage << "Global Dimensions : " << _gdimensions << std::endl;
|
std::cout << GridLogMessage << "\tSIMD layout : " << _simd_layout << std::endl;
|
||||||
std::cout << GridLogMessage << "Local Dimensions : " << _ldimensions << std::endl;
|
std::cout << GridLogMessage << "\tGlobal Dimensions : " << _gdimensions << std::endl;
|
||||||
std::cout << GridLogMessage << "Reduced Dimensions : " << _rdimensions << std::endl;
|
std::cout << GridLogMessage << "\tLocal Dimensions : " << _ldimensions << std::endl;
|
||||||
std::cout << GridLogMessage << "Outer strides : " << _ostride << std::endl;
|
std::cout << GridLogMessage << "\tReduced Dimensions : " << _rdimensions << std::endl;
|
||||||
std::cout << GridLogMessage << "Inner strides : " << _istride << std::endl;
|
std::cout << GridLogMessage << "\tOuter strides : " << _ostride << std::endl;
|
||||||
std::cout << GridLogMessage << "iSites : " << _isites << std::endl;
|
std::cout << GridLogMessage << "\tInner strides : " << _istride << std::endl;
|
||||||
std::cout << GridLogMessage << "oSites : " << _osites << std::endl;
|
std::cout << GridLogMessage << "\tiSites : " << _isites << std::endl;
|
||||||
std::cout << GridLogMessage << "lSites : " << lSites() << std::endl;
|
std::cout << GridLogMessage << "\toSites : " << _osites << std::endl;
|
||||||
std::cout << GridLogMessage << "gSites : " << gSites() << std::endl;
|
std::cout << GridLogMessage << "\tlSites : " << lSites() << std::endl;
|
||||||
std::cout << GridLogMessage << "Nd : " << _ndimension << std::endl;
|
std::cout << GridLogMessage << "\tgSites : " << gSites() << std::endl;
|
||||||
|
std::cout << GridLogMessage << "\tNd : " << _ndimension << std::endl;
|
||||||
}
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////
|
||||||
|
@ -165,7 +165,7 @@ class HMCResourceManager {
|
|||||||
// Grids
|
// Grids
|
||||||
//////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
void AddGrid(std::string s, GridModule& M) {
|
void AddGrid(const std::string s, GridModule& M) {
|
||||||
// Check for name clashes
|
// Check for name clashes
|
||||||
auto search = Grids.find(s);
|
auto search = Grids.find(s);
|
||||||
if (search != Grids.end()) {
|
if (search != Grids.end()) {
|
||||||
@ -174,14 +174,24 @@ class HMCResourceManager {
|
|||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
Grids[s] = std::move(M);
|
Grids[s] = std::move(M);
|
||||||
|
std::cout << GridLogMessage << "::::::::::::::::::::::::::::::::::::::::" <<std::endl;
|
||||||
|
std::cout << GridLogMessage << "HMCResourceManager:" << std::endl;
|
||||||
|
std::cout << GridLogMessage << "Created grid set with name '" << s << "' and decomposition for the full cartesian " << std::endl;
|
||||||
|
Grids[s].show_full_decomposition();
|
||||||
|
std::cout << GridLogMessage << "::::::::::::::::::::::::::::::::::::::::" <<std::endl;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Add a named grid set, 4d shortcut
|
// Add a named grid set, 4d shortcut
|
||||||
void AddFourDimGrid(std::string s) {
|
void AddFourDimGrid(const std::string s) {
|
||||||
GridFourDimModule<vComplex> Mod;
|
GridFourDimModule<vComplex> Mod;
|
||||||
AddGrid(s, Mod);
|
AddGrid(s, Mod);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Add a named grid set, 4d shortcut + tweak simd lanes
|
||||||
|
void AddFourDimGrid(const std::string s, const std::vector<int> simd_decomposition) {
|
||||||
|
GridFourDimModule<vComplex> Mod(simd_decomposition);
|
||||||
|
AddGrid(s, Mod);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
GridCartesian* GetCartesian(std::string s = "") {
|
GridCartesian* GetCartesian(std::string s = "") {
|
||||||
|
@ -33,28 +33,29 @@ directory
|
|||||||
namespace Grid {
|
namespace Grid {
|
||||||
|
|
||||||
// Resources
|
// Resources
|
||||||
// Modules for grids
|
// Modules for grids
|
||||||
|
|
||||||
// Introduce another namespace HMCModules?
|
// Introduce another namespace HMCModules?
|
||||||
|
|
||||||
class GridModuleParameters: Serializable{
|
class GridModuleParameters: Serializable{
|
||||||
public:
|
public:
|
||||||
GRID_SERIALIZABLE_CLASS_MEMBERS(GridModuleParameters,
|
GRID_SERIALIZABLE_CLASS_MEMBERS(GridModuleParameters,
|
||||||
std::string, lattice,
|
std::string, lattice,
|
||||||
std::string, mpi);
|
std::string, mpi);
|
||||||
|
|
||||||
std::vector<int> getLattice(){return strToVec<int>(lattice);}
|
std::vector<int> getLattice() const {return strToVec<int>(lattice);}
|
||||||
std::vector<int> getMpi() {return strToVec<int>(mpi);}
|
std::vector<int> getMpi() const {return strToVec<int>(mpi);}
|
||||||
|
|
||||||
void check(){
|
|
||||||
if (getLattice().size() != getMpi().size()) {
|
void check() const {
|
||||||
std::cout << GridLogError
|
if (getLattice().size() != getMpi().size() ) {
|
||||||
|
std::cout << GridLogError
|
||||||
<< "Error in GridModuleParameters: lattice and mpi dimensions "
|
<< "Error in GridModuleParameters: lattice and mpi dimensions "
|
||||||
"do not match"
|
"do not match"
|
||||||
<< std::endl;
|
<< std::endl;
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
template <class ReaderClass>
|
template <class ReaderClass>
|
||||||
GridModuleParameters(Reader<ReaderClass>& Reader, std::string n = "LatticeGrid"):name(n) {
|
GridModuleParameters(Reader<ReaderClass>& Reader, std::string n = "LatticeGrid"):name(n) {
|
||||||
@ -75,51 +76,94 @@ private:
|
|||||||
// Lower level class
|
// Lower level class
|
||||||
class GridModule {
|
class GridModule {
|
||||||
public:
|
public:
|
||||||
GridCartesian* get_full() {
|
GridCartesian* get_full() {
|
||||||
std::cout << GridLogDebug << "Getting cartesian in module"<< std::endl;
|
std::cout << GridLogDebug << "Getting cartesian in module"<< std::endl;
|
||||||
return grid_.get(); }
|
return grid_.get(); }
|
||||||
GridRedBlackCartesian* get_rb() {
|
GridRedBlackCartesian* get_rb() {
|
||||||
std::cout << GridLogDebug << "Getting rb-cartesian in module"<< std::endl;
|
std::cout << GridLogDebug << "Getting rb-cartesian in module"<< std::endl;
|
||||||
return rbgrid_.get(); }
|
return rbgrid_.get(); }
|
||||||
|
|
||||||
void set_full(GridCartesian* grid) { grid_.reset(grid); }
|
void set_full(GridCartesian* grid) { grid_.reset(grid); }
|
||||||
void set_rb(GridRedBlackCartesian* rbgrid) { rbgrid_.reset(rbgrid); }
|
void set_rb(GridRedBlackCartesian* rbgrid) { rbgrid_.reset(rbgrid); }
|
||||||
|
void show_full_decomposition(){ grid_->show_decomposition(); }
|
||||||
|
void show_rb_decomposition(){ rbgrid_->show_decomposition(); }
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
std::unique_ptr<GridCartesian> grid_;
|
std::unique_ptr<GridCartesian> grid_;
|
||||||
std::unique_ptr<GridRedBlackCartesian> rbgrid_;
|
std::unique_ptr<GridRedBlackCartesian> rbgrid_;
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
////////////////////////////////////
|
////////////////////////////////////
|
||||||
// Classes for the user
|
// Classes for the user
|
||||||
////////////////////////////////////
|
////////////////////////////////////
|
||||||
// Note: the space time grid should be out of the QCD namespace
|
// Note: the space time grid should be out of the QCD namespace
|
||||||
template< class vector_type>
|
template <class vector_type>
|
||||||
class GridFourDimModule : public GridModule {
|
class GridFourDimModule : public GridModule
|
||||||
public:
|
{
|
||||||
GridFourDimModule() {
|
public:
|
||||||
|
GridFourDimModule()
|
||||||
|
{
|
||||||
using namespace QCD;
|
using namespace QCD;
|
||||||
set_full(SpaceTimeGrid::makeFourDimGrid(
|
set_full(SpaceTimeGrid::makeFourDimGrid(
|
||||||
GridDefaultLatt(), GridDefaultSimd(4, vector_type::Nsimd()),
|
GridDefaultLatt(),
|
||||||
|
GridDefaultSimd(4, vector_type::Nsimd()),
|
||||||
GridDefaultMpi()));
|
GridDefaultMpi()));
|
||||||
set_rb(SpaceTimeGrid::makeFourDimRedBlackGrid(grid_.get()));
|
set_rb(SpaceTimeGrid::makeFourDimRedBlackGrid(grid_.get()));
|
||||||
}
|
}
|
||||||
|
|
||||||
GridFourDimModule(GridModuleParameters Params) {
|
GridFourDimModule(const std::vector<int> tweak_simd)
|
||||||
|
{
|
||||||
|
using namespace QCD;
|
||||||
|
if (tweak_simd.size() != 4)
|
||||||
|
{
|
||||||
|
std::cout << GridLogError
|
||||||
|
<< "Error in GridFourDimModule: SIMD size different from 4"
|
||||||
|
<< std::endl;
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Checks that the product agrees with the expectation
|
||||||
|
int simd_sum = 1;
|
||||||
|
for (auto &n : tweak_simd)
|
||||||
|
simd_sum *= n;
|
||||||
|
std::cout << GridLogDebug << "TweakSIMD: " << tweak_simd << " Sum: " << simd_sum << std::endl;
|
||||||
|
|
||||||
|
if (simd_sum == vector_type::Nsimd())
|
||||||
|
{
|
||||||
|
set_full(SpaceTimeGrid::makeFourDimGrid(
|
||||||
|
GridDefaultLatt(),
|
||||||
|
tweak_simd,
|
||||||
|
GridDefaultMpi()));
|
||||||
|
set_rb(SpaceTimeGrid::makeFourDimRedBlackGrid(grid_.get()));
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
std::cout << GridLogError
|
||||||
|
<< "Error in GridFourDimModule: SIMD lanes must sum to "
|
||||||
|
<< vector_type::Nsimd()
|
||||||
|
<< std::endl;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
GridFourDimModule(const GridModuleParameters Params)
|
||||||
|
{
|
||||||
using namespace QCD;
|
using namespace QCD;
|
||||||
Params.check();
|
|
||||||
std::vector<int> lattice_v = Params.getLattice();
|
std::vector<int> lattice_v = Params.getLattice();
|
||||||
std::vector<int> mpi_v = Params.getMpi();
|
std::vector<int> mpi_v = Params.getMpi();
|
||||||
if (lattice_v.size() == 4) {
|
if (lattice_v.size() == 4)
|
||||||
|
{
|
||||||
set_full(SpaceTimeGrid::makeFourDimGrid(
|
set_full(SpaceTimeGrid::makeFourDimGrid(
|
||||||
lattice_v, GridDefaultSimd(4, vector_type::Nsimd()),
|
lattice_v,
|
||||||
|
GridDefaultSimd(4, vector_type::Nsimd()),
|
||||||
mpi_v));
|
mpi_v));
|
||||||
set_rb(SpaceTimeGrid::makeFourDimRedBlackGrid(grid_.get()));
|
set_rb(SpaceTimeGrid::makeFourDimRedBlackGrid(grid_.get()));
|
||||||
} else {
|
}
|
||||||
std::cout << GridLogError
|
else
|
||||||
<< "Error in GridFourDimModule: lattice dimension different from 4"
|
{
|
||||||
<< std::endl;
|
std::cout << GridLogError
|
||||||
|
<< "Error in GridFourDimModule: lattice dimension different from 4"
|
||||||
|
<< std::endl;
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -377,7 +377,7 @@ void Grid_init(int *argc,char ***argv)
|
|||||||
std::cout << GridLogDebug << "Requesting "<< CartesianCommunicator::MAX_MPI_SHM_BYTES <<" byte stencil comms buffers "<<std::endl;
|
std::cout << GridLogDebug << "Requesting "<< CartesianCommunicator::MAX_MPI_SHM_BYTES <<" byte stencil comms buffers "<<std::endl;
|
||||||
|
|
||||||
if( GridCmdOptionExists(*argv,*argv+*argc,"--decomposition") ){
|
if( GridCmdOptionExists(*argv,*argv+*argc,"--decomposition") ){
|
||||||
std::cout<<GridLogMessage<<"Grid Decomposition\n";
|
std::cout<<GridLogMessage<<"Grid Default Decomposition patterns\n";
|
||||||
std::cout<<GridLogMessage<<"\tOpenMP threads : "<<GridThread::GetThreads()<<std::endl;
|
std::cout<<GridLogMessage<<"\tOpenMP threads : "<<GridThread::GetThreads()<<std::endl;
|
||||||
std::cout<<GridLogMessage<<"\tMPI tasks : "<<GridCmdVectorIntToString(GridDefaultMpi())<<std::endl;
|
std::cout<<GridLogMessage<<"\tMPI tasks : "<<GridCmdVectorIntToString(GridDefaultMpi())<<std::endl;
|
||||||
std::cout<<GridLogMessage<<"\tvRealF : "<<sizeof(vRealF)*8 <<"bits ; " <<GridCmdVectorIntToString(GridDefaultSimd(4,vRealF::Nsimd()))<<std::endl;
|
std::cout<<GridLogMessage<<"\tvRealF : "<<sizeof(vRealF)*8 <<"bits ; " <<GridCmdVectorIntToString(GridDefaultSimd(4,vRealF::Nsimd()))<<std::endl;
|
||||||
|
@ -40,12 +40,6 @@ namespace Grid{
|
|||||||
double, StoppingCondition,
|
double, StoppingCondition,
|
||||||
int, MaxCGIterations,
|
int, MaxCGIterations,
|
||||||
bool, ApplySmearing);
|
bool, ApplySmearing);
|
||||||
|
|
||||||
//template <class ReaderClass >
|
|
||||||
//FermionParameters(Reader<ReaderClass>& Reader){
|
|
||||||
// read(Reader, "Mobius", *this);
|
|
||||||
//}
|
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
@ -113,9 +107,12 @@ int main(int argc, char **argv) {
|
|||||||
bool ApplySmearing = MyParams.Mobius.ApplySmearing;
|
bool ApplySmearing = MyParams.Mobius.ApplySmearing;
|
||||||
|
|
||||||
|
|
||||||
|
// Use this if you want to tweak the default decomposition
|
||||||
|
std::vector<int> simd_lanes({2,2,1,1});
|
||||||
|
|
||||||
// Grid from the command line
|
// Grid from the command line arguments --grid and --mpi
|
||||||
TheHMC.Resources.AddFourDimGrid("gauge");
|
// drop the simd_lanes argument to fall back to the default decomposition for the SIMD lanes
|
||||||
|
TheHMC.Resources.AddFourDimGrid("gauge", simd_lanes);
|
||||||
// Possibile to create the module by hand
|
// Possibile to create the module by hand
|
||||||
// hardcoding parameters or using a Reader
|
// hardcoding parameters or using a Reader
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user