add dependencies for subphase analysis

This commit is contained in:
James E McClure 2019-03-27 07:39:10 -04:00
parent e02eb96725
commit c0b3b04172

View File

@ -410,11 +410,9 @@ public:
~SubphaseWorkItem() { } ~SubphaseWorkItem() { }
virtual void run() { virtual void run() {
if ( matches(type,AnalysisType::ComputeAverages) ) { PROFILE_START("Compute subphase",1);
PROFILE_START("Compute subphase",1); Averages.Full();
Averages.Full(); PROFILE_STOP("Compute subphase",1);
PROFILE_STOP("Compute subphase",1);
}
} }
private: private:
SubphaseWorkItem(); SubphaseWorkItem();