mirror of
https://github.com/paboyle/Grid.git
synced 2025-04-04 19:25:56 +01:00
Added midMD checkpointing (for lattice only for now)
This commit is contained in:
parent
982a60536c
commit
7af6022a2a
@ -112,6 +112,8 @@ private:
|
|||||||
IntegratorType &TheIntegrator;
|
IntegratorType &TheIntegrator;
|
||||||
ObsListType Observables;
|
ObsListType Observables;
|
||||||
|
|
||||||
|
int traj_num;
|
||||||
|
|
||||||
/////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////
|
||||||
// Metropolis step
|
// Metropolis step
|
||||||
/////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////
|
||||||
@ -202,7 +204,7 @@ private:
|
|||||||
|
|
||||||
std::cout << GridLogMessage << "--------------------------------------------------\n";
|
std::cout << GridLogMessage << "--------------------------------------------------\n";
|
||||||
std::cout << GridLogMessage << " Molecular Dynamics evolution ";
|
std::cout << GridLogMessage << " Molecular Dynamics evolution ";
|
||||||
TheIntegrator.integrate(U);
|
TheIntegrator.integrate(U,traj_num);
|
||||||
std::cout << GridLogMessage << "--------------------------------------------------\n";
|
std::cout << GridLogMessage << "--------------------------------------------------\n";
|
||||||
|
|
||||||
//////////////////////////////////////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
@ -244,7 +246,7 @@ public:
|
|||||||
HybridMonteCarlo(HMCparameters _Pams, IntegratorType &_Int,
|
HybridMonteCarlo(HMCparameters _Pams, IntegratorType &_Int,
|
||||||
GridSerialRNG &_sRNG, GridParallelRNG &_pRNG,
|
GridSerialRNG &_sRNG, GridParallelRNG &_pRNG,
|
||||||
ObsListType _Obs, Field &_U)
|
ObsListType _Obs, Field &_U)
|
||||||
: Params(_Pams), TheIntegrator(_Int), sRNG(_sRNG), pRNG(_pRNG), Observables(_Obs), Ucur(_U) {}
|
: Params(_Pams), TheIntegrator(_Int), sRNG(_sRNG), pRNG(_pRNG), Observables(_Obs), Ucur(_U),traj_num(0) {}
|
||||||
~HybridMonteCarlo(){};
|
~HybridMonteCarlo(){};
|
||||||
|
|
||||||
void evolve(void) {
|
void evolve(void) {
|
||||||
@ -259,9 +261,10 @@ public:
|
|||||||
unsigned int FinalTrajectory = Params.Trajectories + Params.NoMetropolisUntil + Params.StartTrajectory;
|
unsigned int FinalTrajectory = Params.Trajectories + Params.NoMetropolisUntil + Params.StartTrajectory;
|
||||||
|
|
||||||
for (int traj = Params.StartTrajectory; traj < FinalTrajectory; ++traj) {
|
for (int traj = Params.StartTrajectory; traj < FinalTrajectory; ++traj) {
|
||||||
|
|
||||||
|
|
||||||
std::cout << GridLogHMC << "-- # Trajectory = " << traj << "\n";
|
std::cout << GridLogHMC << "-- # Trajectory = " << traj << "\n";
|
||||||
|
traj_num=traj;
|
||||||
if (traj < Params.StartTrajectory + Params.NoMetropolisUntil) {
|
if (traj < Params.StartTrajectory + Params.NoMetropolisUntil) {
|
||||||
std::cout << GridLogHMC << "-- Thermalization" << std::endl;
|
std::cout << GridLogHMC << "-- Thermalization" << std::endl;
|
||||||
}
|
}
|
||||||
|
@ -34,6 +34,7 @@ directory
|
|||||||
#define INTEGRATOR_INCLUDED
|
#define INTEGRATOR_INCLUDED
|
||||||
|
|
||||||
#include <memory>
|
#include <memory>
|
||||||
|
#include <Grid/parallelIO/NerscIO.h>
|
||||||
|
|
||||||
NAMESPACE_BEGIN(Grid);
|
NAMESPACE_BEGIN(Grid);
|
||||||
|
|
||||||
@ -676,7 +677,7 @@ public:
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void integrate(Field& U)
|
void integrate(Field& U, int traj=-1 )
|
||||||
{
|
{
|
||||||
// reset the clocks
|
// reset the clocks
|
||||||
t_U = 0;
|
t_U = 0;
|
||||||
@ -688,6 +689,12 @@ public:
|
|||||||
int first_step = (stp == 0);
|
int first_step = (stp == 0);
|
||||||
int last_step = (stp == Params.MDsteps - 1);
|
int last_step = (stp == Params.MDsteps - 1);
|
||||||
this->step(U, 0, first_step, last_step);
|
this->step(U, 0, first_step, last_step);
|
||||||
|
if (traj>=0){
|
||||||
|
std::string file("./config."+std::to_string(traj)+"_"+std::to_string(stp+1) );
|
||||||
|
int precision32 = 0;
|
||||||
|
int tworow = 0;
|
||||||
|
NerscIO::writeConfiguration(U,file,tworow,precision32);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check the clocks all match on all levels
|
// Check the clocks all match on all levels
|
||||||
@ -697,7 +704,6 @@ public:
|
|||||||
}
|
}
|
||||||
|
|
||||||
FieldImplementation::Project(U);
|
FieldImplementation::Project(U);
|
||||||
|
|
||||||
// and that we indeed got to the end of the trajectory
|
// and that we indeed got to the end of the trajectory
|
||||||
assert(fabs(t_U - Params.trajL) < 1.0e-6);
|
assert(fabs(t_U - Params.trajL) < 1.0e-6);
|
||||||
|
|
||||||
|
@ -140,7 +140,7 @@ template <class FieldImplementation_, class SmearingPolicy, class Representation
|
|||||||
class MinimumNorm2 : public Integrator<FieldImplementation_, SmearingPolicy, RepresentationPolicy>
|
class MinimumNorm2 : public Integrator<FieldImplementation_, SmearingPolicy, RepresentationPolicy>
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
const RealD lambda = 0.1931833275037836;
|
// const RealD lambda = 0.1931833275037836;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
typedef FieldImplementation_ FieldImplementation;
|
typedef FieldImplementation_ FieldImplementation;
|
||||||
@ -155,6 +155,11 @@ public:
|
|||||||
// level : current level
|
// level : current level
|
||||||
// fl : final level
|
// fl : final level
|
||||||
// eps : current step size
|
// eps : current step size
|
||||||
|
assert(level<3);
|
||||||
|
RealD lambda= this->Params.lambda0;
|
||||||
|
if (level>0) lambda= this->Params.lambda1;
|
||||||
|
if (level>1) lambda= this->Params.lambda2;
|
||||||
|
std::cout << GridLogMessage << "level: "<<level<< "lambda: "<<lambda<<std::endl;
|
||||||
|
|
||||||
int fl = this->as.size() - 1;
|
int fl = this->as.size() - 1;
|
||||||
|
|
||||||
|
@ -365,9 +365,15 @@ public:
|
|||||||
GridParallelRNG RNG5(FGrid); RNG5.SeedFixedIntegers(seeds5);
|
GridParallelRNG RNG5(FGrid); RNG5.SeedFixedIntegers(seeds5);
|
||||||
std::cout << GridLogMessage << "Initialised RNGs" << std::endl;
|
std::cout << GridLogMessage << "Initialised RNGs" << std::endl;
|
||||||
|
|
||||||
|
#if 1
|
||||||
typedef DomainWallFermionF Action;
|
typedef DomainWallFermionF Action;
|
||||||
typedef typename Action::FermionField Fermion;
|
typedef typename Action::FermionField Fermion;
|
||||||
typedef LatticeGaugeFieldF Gauge;
|
typedef LatticeGaugeFieldF Gauge;
|
||||||
|
#else
|
||||||
|
typedef GparityDomainWallFermionF Action;
|
||||||
|
typedef typename Action::FermionField Fermion;
|
||||||
|
typedef LatticeGaugeFieldF Gauge;
|
||||||
|
#endif
|
||||||
|
|
||||||
///////// Source preparation ////////////
|
///////// Source preparation ////////////
|
||||||
Gauge Umu(UGrid); SU<Nc>::HotConfiguration(RNG4,Umu);
|
Gauge Umu(UGrid); SU<Nc>::HotConfiguration(RNG4,Umu);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user