mirror of
https://github.com/paboyle/Grid.git
synced 2025-04-04 19:25:56 +01:00
Convenient to monitor memory across an HMC trajectory
This commit is contained in:
parent
a66973163f
commit
cf3584ad15
@ -137,9 +137,11 @@ public:
|
||||
|
||||
double start_force = usecond();
|
||||
|
||||
MemoryManager::Print();
|
||||
as[level].actions.at(a)->deriv_timer_start();
|
||||
as[level].actions.at(a)->deriv(Smearer, force); // deriv should NOT include Ta
|
||||
as[level].actions.at(a)->deriv_timer_stop();
|
||||
MemoryManager::Print();
|
||||
|
||||
auto name = as[level].actions.at(a)->action_name();
|
||||
|
||||
@ -246,7 +248,11 @@ public:
|
||||
}
|
||||
};
|
||||
|
||||
virtual ~Integrator() {}
|
||||
virtual ~Integrator()
|
||||
{
|
||||
// Pain in the ass to clean up the Level pointers
|
||||
// Guido's design is at fault as per comment above in constructor
|
||||
}
|
||||
|
||||
virtual std::string integrator_name() = 0;
|
||||
|
||||
@ -460,6 +466,7 @@ public:
|
||||
for (int level = 0; level < as.size(); ++level) {
|
||||
for (int actionID = 0; actionID < as[level].actions.size(); ++actionID) {
|
||||
|
||||
MemoryManager::Print();
|
||||
// get gauge field from the SmearingPolicy and
|
||||
// based on the boolean is_smeared in actionID
|
||||
std::cout << GridLogMessage << "S [" << level << "][" << actionID << "] action eval " << std::endl;
|
||||
@ -468,6 +475,7 @@ public:
|
||||
as[level].actions.at(actionID)->S_timer_stop();
|
||||
std::cout << GridLogMessage << "S [" << level << "][" << actionID << "] H = " << Hterm << std::endl;
|
||||
H += Hterm;
|
||||
MemoryManager::Print();
|
||||
|
||||
}
|
||||
as[level].apply(S_hireps, Representations, level, H);
|
||||
|
Loading…
x
Reference in New Issue
Block a user