/************************************************************************************* Grid physics library, www.github.com/paboyle/Grid Source file: ./lib/qcd/hmc/GenericHmcRunner.h Copyright (C) 2015 Author: paboyle Author: Guido Cossu 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_GENERIC_HMC_RUNNER #define GRID_GENERIC_HMC_RUNNER #include namespace Grid { namespace QCD { // very ugly here but possibly resolved if we had a base Reader class template < class ReaderClass > class HMCRunnerBase { public: virtual void Run() = 0; virtual void initialize(ReaderClass& ) = 0; }; template class Integrator, class RepresentationsPolicy = NoHirep, class ReaderClass = XmlReader> class HMCWrapperTemplate: public HMCRunnerBase { public: INHERIT_FIELD_TYPES(Implementation); typedef Implementation ImplPolicy; // visible from outside template > using IntegratorType = Integrator; HMCparameters Parameters; HMCResourceManager Resources; // The set of actions (keep here for lower level users, for now) ActionSet TheAction; HMCWrapperTemplate() = default; HMCWrapperTemplate(HMCparameters Par){ Parameters = Par; } void initialize(ReaderClass & TheReader){ std::cout << "Initialization of the HMC" << std::endl; Resources.initialize(TheReader); // eventually add smearing Resources.GetActionSet(TheAction); } void ReadCommandLine(int argc, char **argv) { std::string arg; 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"; std::cout << GridLogError << "Valid [HotStart, ColdStart, TepidStart, CheckpointStart]\n"; exit(1); } Parameters.StartingType = arg; } if (GridCmdOptionExists(argv, argv + argc, "--StartingTrajectory")) { arg = GridCmdOptionPayload(argv, argv + argc, "--StartingTrajectory"); std::vector ivec(0); GridCmdOptionIntVector(arg, ivec); Parameters.StartTrajectory = ivec[0]; } if (GridCmdOptionExists(argv, argv + argc, "--Trajectories")) { arg = GridCmdOptionPayload(argv, argv + argc, "--Trajectories"); std::vector ivec(0); GridCmdOptionIntVector(arg, ivec); Parameters.Trajectories = ivec[0]; } if (GridCmdOptionExists(argv, argv + argc, "--Thermalizations")) { arg = GridCmdOptionPayload(argv, argv + argc, "--Thermalizations"); std::vector ivec(0); GridCmdOptionIntVector(arg, ivec); Parameters.NoMetropolisUntil = ivec[0]; } } template void Run(SmearingPolicy &S) { Runner(S); } void Run(){ NoSmearing S; Runner(S); } ////////////////////////////////////////////////////////////////// private: template void Runner(SmearingPolicy &Smearing) { auto UGrid = Resources.GetCartesian(); Resources.AddRNGs(); Field U(UGrid); // Can move this outside? typedef IntegratorType TheIntegrator; TheIntegrator MDynamics(UGrid, Parameters.MD, TheAction, Smearing); if (Parameters.StartingType == "HotStart") { // Hot start Resources.SeedFixedIntegers(); Implementation::HotConfiguration(Resources.GetParallelRNG(), U); } else if (Parameters.StartingType == "ColdStart") { // Cold start Resources.SeedFixedIntegers(); Implementation::ColdConfiguration(Resources.GetParallelRNG(), U); } else if (Parameters.StartingType == "TepidStart") { // Tepid start Resources.SeedFixedIntegers(); Implementation::TepidConfiguration(Resources.GetParallelRNG(), U); } else if (Parameters.StartingType == "CheckpointStart") { // CheckpointRestart Resources.GetCheckPointer()->CheckpointRestore(Parameters.StartTrajectory, U, Resources.GetSerialRNG(), Resources.GetParallelRNG()); } Smearing.set_Field(U); HybridMonteCarlo HMC(Parameters, MDynamics, Resources.GetSerialRNG(), Resources.GetParallelRNG(), Resources.GetObservables(), U); // Run it HMC.evolve(); } }; // These are for gauge fields, default integrator MinimumNorm2 template