1
0
mirror of https://github.com/paboyle/Grid.git synced 2024-09-21 01:25:48 +01:00
Grid/lib/qcd/hmc/GenericHMCrunner.h

182 lines
6.1 KiB
C
Raw Normal View History

/*************************************************************************************
Grid physics library, www.github.com/paboyle/Grid
Source file: ./lib/qcd/hmc/GenericHmcRunner.h
Copyright (C) 2015
Author: paboyle <paboyle@ph.ed.ac.uk>
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.
2016-10-21 14:22:25 +01:00
See the full license in the file "LICENSE" in the top level distribution
directory
*************************************************************************************/
/* END LEGAL */
#ifndef GRID_GENERIC_HMC_RUNNER
#define GRID_GENERIC_HMC_RUNNER
2016-12-22 12:41:56 +00:00
#include <unordered_map>
namespace Grid {
namespace QCD {
2017-01-17 10:46:49 +00:00
class HMCBase{
public:
virtual void Run() = 0;
};
2017-01-05 13:09:32 +00:00
template <class Implementation,
template <typename, typename, typename> class Integrator,
class RepresentationsPolicy = NoHirep>
2017-01-17 10:46:49 +00:00
class HMCWrapperTemplate: public HMCBase {
2017-01-05 13:09:32 +00:00
public:
INHERIT_FIELD_TYPES(Implementation);
typedef Implementation ImplPolicy; // visible from outside
template <typename S = NoSmearing<Implementation> >
using IntegratorType = Integrator<Implementation, S, RepresentationsPolicy>;
2017-01-17 13:22:18 +00:00
HMCparameters Parameters;
2017-01-05 13:09:32 +00:00
HMCResourceManager<Implementation> Resources;
2017-01-17 13:22:18 +00:00
// The set of actions
2017-01-05 13:09:32 +00:00
ActionSet<Field, RepresentationsPolicy> TheAction;
// A vector of HmcObservable that can be injected from outside
std::vector<HmcObservable<typename Implementation::Field> *> ObservablesList;
void ReadCommandLine(int argc, char **argv) {
std::string arg;
2017-01-17 13:22:18 +00:00
if (GridCmdOptionExists(argv, argv + argc, "--StartingType")) {
arg = GridCmdOptionPayload(argv, argv + argc, "--StartingType");
if (arg != "HotStart" && arg != "ColdStart" && arg != "TepidStart" &&
arg != "CheckpointStart") {
std::cout << GridLogError << "Unrecognized option in --StartingType\n";
2017-01-05 13:09:32 +00:00
std::cout
<< GridLogError
<< "Valid [HotStart, ColdStart, TepidStart, CheckpointStart]\n";
2017-01-17 13:22:18 +00:00
exit(1);
2017-01-05 13:09:32 +00:00
}
2017-01-17 13:22:18 +00:00
Parameters.StartingType = arg;
2017-01-05 13:09:32 +00:00
}
if (GridCmdOptionExists(argv, argv + argc, "--StartTrajectory")) {
arg = GridCmdOptionPayload(argv, argv + argc, "--StartTrajectory");
std::vector<int> ivec(0);
GridCmdOptionIntVector(arg, ivec);
2017-01-17 13:22:18 +00:00
Parameters.StartTrajectory = ivec[0];
2017-01-05 13:09:32 +00:00
}
if (GridCmdOptionExists(argv, argv + argc, "--Trajectories")) {
arg = GridCmdOptionPayload(argv, argv + argc, "--Trajectories");
std::vector<int> ivec(0);
GridCmdOptionIntVector(arg, ivec);
2017-01-17 13:22:18 +00:00
Parameters.Trajectories = ivec[0];
2017-01-05 13:09:32 +00:00
}
if (GridCmdOptionExists(argv, argv + argc, "--Thermalizations")) {
arg = GridCmdOptionPayload(argv, argv + argc, "--Thermalizations");
std::vector<int> ivec(0);
GridCmdOptionIntVector(arg, ivec);
2017-01-17 13:22:18 +00:00
Parameters.NoMetropolisUntil = ivec[0];
2017-01-05 13:09:32 +00:00
}
2016-12-22 12:41:56 +00:00
}
2017-01-05 13:09:32 +00:00
template <class SmearingPolicy>
void Run(SmearingPolicy &S) {
Runner(S);
}
void Run(){
NoSmearing<Implementation> S;
Runner(S);
2016-12-22 12:41:56 +00:00
}
//////////////////////////////////////////////////////////////////
2017-01-05 13:09:32 +00:00
private:
template <class SmearingPolicy>
void Runner(SmearingPolicy &Smearing) {
auto UGrid = Resources.GetCartesian();
Resources.AddRNGs();
Field U(UGrid);
2017-01-17 10:46:49 +00:00
// Can move this outside?
2017-01-05 13:09:32 +00:00
typedef IntegratorType<SmearingPolicy> TheIntegrator;
2017-01-17 13:22:18 +00:00
TheIntegrator MDynamics(UGrid, Parameters.MD, TheAction, Smearing);
2017-01-05 13:09:32 +00:00
2017-01-17 13:22:18 +00:00
if (Parameters.StartingType == "HotStart") {
2017-01-05 13:09:32 +00:00
// Hot start
Resources.SeedFixedIntegers();
Implementation::HotConfiguration(Resources.GetParallelRNG(), U);
2017-01-17 13:22:18 +00:00
} else if (Parameters.StartingType == "ColdStart") {
2017-01-05 13:09:32 +00:00
// Cold start
Resources.SeedFixedIntegers();
Implementation::ColdConfiguration(Resources.GetParallelRNG(), U);
2017-01-17 13:22:18 +00:00
} else if (Parameters.StartingType == "TepidStart") {
2017-01-05 13:09:32 +00:00
// Tepid start
Resources.SeedFixedIntegers();
Implementation::TepidConfiguration(Resources.GetParallelRNG(), U);
2017-01-17 13:22:18 +00:00
} else if (Parameters.StartingType == "CheckpointStart") {
2017-01-05 13:09:32 +00:00
// CheckpointRestart
2017-01-17 13:22:18 +00:00
Resources.GetCheckPointer()->CheckpointRestore(Parameters.StartTrajectory, U,
2017-01-05 13:09:32 +00:00
Resources.GetSerialRNG(),
Resources.GetParallelRNG());
}
Smearing.set_Field(U);
2017-01-17 13:22:18 +00:00
HybridMonteCarlo<TheIntegrator> HMC(Parameters, MDynamics,
2017-01-05 13:09:32 +00:00
Resources.GetSerialRNG(),
Resources.GetParallelRNG(), U);
for (int obs = 0; obs < ObservablesList.size(); obs++)
HMC.AddObservable(ObservablesList[obs]);
2017-01-16 10:18:09 +00:00
HMC.AddObservable(Resources.GetCheckPointer());
2017-01-05 13:09:32 +00:00
// Run it
HMC.evolve();
}
};
2016-12-22 12:41:56 +00:00
// These are for gauge fields, default integrator MinimumNorm2
2017-01-05 13:09:32 +00:00
template <template <typename, typename, typename> class Integrator>
using GenericHMCRunner = HMCWrapperTemplate<PeriodicGimplR, Integrator>;
template <template <typename, typename, typename> class Integrator>
using GenericHMCRunnerF = HMCWrapperTemplate<PeriodicGimplF, Integrator>;
template <template <typename, typename, typename> class Integrator>
using GenericHMCRunnerD = HMCWrapperTemplate<PeriodicGimplD, Integrator>;
template <class RepresentationsPolicy,
template <typename, typename, typename> class Integrator>
using GenericHMCRunnerHirep =
HMCWrapperTemplate<PeriodicGimplR, Integrator, RepresentationsPolicy>;
typedef HMCWrapperTemplate<ScalarImplR, MinimumNorm2, ScalarFields>
ScalarGenericHMCRunner;
} // namespace QCD
} // namespace Grid
2016-12-22 12:41:56 +00:00
#endif // GRID_GENERIC_HMC_RUNNER