From f48298ad4e58386b6eb4edbf0fe045a353bca6c7 Mon Sep 17 00:00:00 2001 From: Peter Boyle Date: Mon, 11 Dec 2023 20:56:03 -0500 Subject: [PATCH] Bug fix --- Grid/qcd/hmc/integrators/Integrator.h | 25 +++++++++++++++++++++---- 1 file changed, 21 insertions(+), 4 deletions(-) diff --git a/Grid/qcd/hmc/integrators/Integrator.h b/Grid/qcd/hmc/integrators/Integrator.h index f3c728fc..385ff986 100644 --- a/Grid/qcd/hmc/integrators/Integrator.h +++ b/Grid/qcd/hmc/integrators/Integrator.h @@ -86,6 +86,7 @@ public: MomentumFilterBase const* MomFilter; const ActionSet as; + ActionSet LevelForces; //Get a pointer to a shared static instance of the "do-nothing" momentum filter to serve as a default @@ -124,6 +125,8 @@ public: void update_P(MomentaField& Mom, Field& U, int level, double ep) { // input U actually not used in the fundamental case // Fundamental updates, include smearing + + assert(as.size()==LevelForces.size()); Field level_force(U.Grid()); level_force =Zero(); for (int a = 0; a < as[level].actions.size(); ++a) { @@ -233,9 +236,13 @@ public: MomFilter = getDefaultMomFilter(); for (int level = 0; level < as.size(); ++level) { - ActionLevel Level; - Level.push_back(new EmptyAction); - LevelForces.push_back(Level); // does it copy by value or reference?? + int multiplier = as.at(level).multiplier; + ActionLevel * Level = new ActionLevel(multiplier); + Level->push_back(new EmptyAction); + LevelForces.push_back(*Level); + // does it copy by value or reference?? + // - answer it copies by value, BUT the action level contains a reference that is NOT updated. + // Unsafe code in Guido's area } }; @@ -254,12 +261,14 @@ public: void reset_timer(void) { + assert(as.size()==LevelForces.size()); for (int level = 0; level < as.size(); ++level) { for (int actionID = 0; actionID < as[level].actions.size(); ++actionID) { as[level].actions.at(actionID)->reset_timer(); } int actionID=0; - LevelForces[level].actions.at(actionID)->reset_timer(); + assert(LevelForces.at(level).actions.size()==1); + LevelForces.at(level).actions.at(actionID)->reset_timer(); } } void print_timer(void) @@ -352,6 +361,13 @@ public: std::cout << as[level].actions.at(actionID)->LogParameters(); } } + std::cout << " [Integrator] Total Force loggers: "<< LevelForces.size() <action_name() << "] ID: " << actionID << std::endl; + } + } std::cout << GridLogMessage << ":::::::::::::::::::::::::::::::::::::::::"<< std::endl; } @@ -433,6 +449,7 @@ public: RealD S(Field& U) { // here also U not used + assert(as.size()==LevelForces.size()); std::cout << GridLogIntegrator << "Integrator action\n"; RealD H = - FieldImplementation::FieldSquareNorm(P)/HMC_MOMENTUM_DENOMINATOR; // - trace (P*P)/denom