CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Classes | Public Member Functions | Private Member Functions | Private Attributes
edm::SystemTimeKeeper Class Reference

#include <SystemTimeKeeper.h>

Classes

struct  ModuleInPathTiming
 
struct  ModuleTiming
 
struct  PathTiming
 

Public Member Functions

void fillTriggerTimingReport (TriggerTimingReport &rep) const
 
void pauseModuleEvent (StreamContext const &, ModuleCallingContext const &)
 
void restartModuleEvent (StreamContext const &, ModuleCallingContext const &)
 
void startEvent (StreamID)
 
void startModuleEvent (StreamContext const &, ModuleCallingContext const &)
 
void startPath (StreamContext const &, PathContext const &)
 
void startProcessingLoop ()
 
void stopEvent (StreamContext const &)
 
void stopModuleEvent (StreamContext const &, ModuleCallingContext const &)
 
void stopPath (StreamContext const &, PathContext const &, HLTPathStatus const &)
 
void stopProcessingLoop ()
 
 SystemTimeKeeper (unsigned int iNumStreams, std::vector< const ModuleDescription * > const &iModules, service::TriggerNamesService const &iNameService)
 

Private Member Functions

const SystemTimeKeeperoperator= (const SystemTimeKeeper &)=delete
 
PathTimingpathTiming (StreamContext const &, PathContext const &)
 
 SystemTimeKeeper (const SystemTimeKeeper &)=delete
 

Private Attributes

unsigned int m_endPathOffset
 
unsigned int m_minModuleID
 
std::vector< const
ModuleDescription * > 
m_modules
 
std::vector< std::vector
< std::string > > 
m_modulesOnPaths
 
std::atomic< unsigned int > m_numberOfEvents
 
std::vector< std::string > m_pathNames
 
CPUTimer m_processingLoopTimer
 
std::vector< WallclockTimerm_streamEventTimer
 
std::vector< std::vector
< ModuleTiming > > 
m_streamModuleTiming
 
std::vector< std::vector
< PathTiming > > 
m_streamPathTiming
 

Detailed Description

Definition at line 45 of file SystemTimeKeeper.h.

Constructor & Destructor Documentation

SystemTimeKeeper::SystemTimeKeeper ( unsigned int  iNumStreams,
std::vector< const ModuleDescription * > const &  iModules,
service::TriggerNamesService const &  iNameService 
)

Definition at line 41 of file SystemTimeKeeper.cc.

References filterCSVwithJSON::copy, edm::service::TriggerNamesService::getEndPathModules(), edm::service::TriggerNamesService::getEndPaths(), edm::service::TriggerNamesService::getTrigPathModules(), edm::service::TriggerNamesService::getTrigPaths(), i, edm::ModuleDescription::id(), cmsHarvester::index, m_endPathOffset, m_minModuleID, m_modules, m_modulesOnPaths, m_pathNames, m_streamModuleTiming, and m_streamPathTiming.

43  :
44 m_streamEventTimer(iNumStreams),
45 m_streamPathTiming(iNumStreams),
46 m_modules(iModules),
47 m_minModuleID(0),
49 {
50  std::sort(m_modules.begin(),m_modules.end(),
51  [] (const ModuleDescription* iLHS,
52  const ModuleDescription* iRHS) -> bool {
53  return iLHS->id() < iRHS->id();
54  });
55  if(not m_modules.empty()) {
56  m_minModuleID = m_modules.front()->id();
57  unsigned int numModuleSlots = m_modules.back()->id() - m_minModuleID + 1;
58  m_streamModuleTiming.resize(iNumStreams);
59  for(auto& stream: m_streamModuleTiming) {
60  stream.resize(numModuleSlots);
61  }
62  }
63 
64 
65  std::vector<unsigned int> numModulesInPath;
66  std::vector<unsigned int> numModulesInEndPath;
67 
68  const unsigned int numPaths = iNamesService.getTrigPaths().size();
69  const unsigned int numEndPaths = iNamesService.getEndPaths().size();
70  m_pathNames.reserve(numPaths+numEndPaths);
71  std::copy(iNamesService.getTrigPaths().begin(),
72  iNamesService.getTrigPaths().end(),
73  std::back_inserter(m_pathNames));
74  std::copy(iNamesService.getEndPaths().begin(),
75  iNamesService.getEndPaths().end(),
76  std::back_inserter(m_pathNames));
77 
78  numModulesInPath.reserve(numPaths);
79  numModulesInEndPath.reserve(numEndPaths);
80 
81  m_modulesOnPaths.reserve(numPaths+numEndPaths);
82 
83  for(unsigned int i =0; i<numPaths;++i) {
84  numModulesInPath.push_back(iNamesService.getTrigPathModules(i).size());
85  m_modulesOnPaths.push_back(iNamesService.getTrigPathModules(i));
86  }
87  for(unsigned int i =0; i<numEndPaths;++i) {
88  numModulesInEndPath.push_back(iNamesService.getEndPathModules(i).size());
89  m_modulesOnPaths.push_back(iNamesService.getEndPathModules(i));
90  }
91 
92  m_endPathOffset =numModulesInPath.size();
93 
94  for( auto& stream: m_streamPathTiming) {
95  unsigned int index = 0;
96  stream.resize(numModulesInPath.size()+numModulesInEndPath.size());
97  for(unsigned int numMods : numModulesInPath) {
98  stream[index].m_moduleTiming.resize(numMods);
99  ++index;
100  }
101  for(unsigned int numMods : numModulesInEndPath) {
102  stream[index].m_moduleTiming.resize(numMods);
103  ++index;
104  }
105 
106  }
107 }
std::vector< std::vector< std::string > > m_modulesOnPaths
int i
Definition: DBlmapReader.cc:9
std::atomic< unsigned int > m_numberOfEvents
std::vector< std::vector< ModuleTiming > > m_streamModuleTiming
std::vector< std::string > m_pathNames
std::vector< const ModuleDescription * > m_modules
std::vector< WallclockTimer > m_streamEventTimer
unsigned int m_endPathOffset
std::vector< std::vector< PathTiming > > m_streamPathTiming
unsigned int id() const
edm::SystemTimeKeeper::SystemTimeKeeper ( const SystemTimeKeeper )
privatedelete

Member Function Documentation

void SystemTimeKeeper::fillTriggerTimingReport ( TriggerTimingReport rep) const

Definition at line 249 of file SystemTimeKeeper.cc.

References edm::EventTimingSummary::cpuTime, edm::CPUTimer::cpuTime(), edm::TriggerTimingReport::endPathSummaries, edm::TriggerTimingReport::eventSummary, edm::fillPathSummary(), m_endPathOffset, m_minModuleID, m_modules, m_modulesOnPaths, m_numberOfEvents, m_pathNames, m_processingLoopTimer, m_streamEventTimer, m_streamModuleTiming, m_streamPathTiming, mod(), fed_dqm_sourceclient-live_cfg::path, edm::EventTimingSummary::realTime, edm::CPUTimer::realTime(), findQualityFiles::size, edm::sort_all(), edmLumisInFiles::summary, edm::EventTimingSummary::sumStreamRealTime, edm::EventTimingSummary::totalEvents, edm::TriggerTimingReport::trigPathSummaries, class-composition::visited, and edm::TriggerTimingReport::workerSummaries.

249  {
250  {
252  double sumEventTime = 0.;
253  for(auto const& stream: m_streamEventTimer) {
254  sumEventTime += stream.realTime();
255  }
258  rep.eventSummary.sumStreamRealTime = sumEventTime;
259  }
260 
261  //Per module summary
262  {
263  auto& summary = rep.workerSummaries;
264  summary.resize(m_modules.size());
265  //Figure out how often a module was visited
266  std::map<std::string,unsigned int> visited;
267  for(auto const& stream: m_streamPathTiming) {
268  unsigned int pathIndex = 0;
269  for(auto const& path: stream) {
270  unsigned int modIndex = 0;
271  for(auto const& mod: path.m_moduleTiming) {
272  visited[m_modulesOnPaths[pathIndex][modIndex]] += mod.m_timesVisited;
273  ++modIndex;
274  }
275  ++pathIndex;
276  }
277  }
278 
279  unsigned int modIndex=0;
280  for(auto const& mod: m_modules) {
281  auto& outMod = summary[modIndex];
282  outMod.moduleLabel = mod->moduleLabel();
283  outMod.realTime = 0.;
284 
285  auto moduleId =mod->id()-m_minModuleID;
286  for(auto const& stream: m_streamModuleTiming) {
287  auto const& timing = stream[moduleId];
288  outMod.realTime += timing.m_timer.realTime();
289  outMod.timesRun += timing.m_timesRun;
290  }
291  outMod.timesVisited = visited[mod->moduleLabel()];
292  if(0 == outMod.timesVisited) {
293  outMod.timesVisited = outMod.timesRun;
294  }
295  ++modIndex;
296  }
297  }
299 
300  //Per path summary
301  {
303  fillPathSummary(m_endPathOffset, m_streamPathTiming[0].size(), m_pathNames, m_modulesOnPaths, m_streamPathTiming, rep.endPathSummaries);
304  }
305 }
std::vector< std::vector< std::string > > m_modulesOnPaths
std::vector< PathTimingSummary > endPathSummaries
std::atomic< unsigned int > m_numberOfEvents
std::vector< std::vector< ModuleTiming > > m_streamModuleTiming
std::vector< std::string > m_pathNames
std::vector< const ModuleDescription * > m_modules
EventTimingSummary eventSummary
static void fillPathSummary(Path const &path, PathSummary &sum)
std::vector< PathTimingSummary > trigPathSummaries
double cpuTime() const
Definition: CPUTimer.cc:158
void sort_all(RandomAccessSequence &s)
wrappers for std::sort
Definition: Algorithms.h:120
std::vector< WallclockTimer > m_streamEventTimer
unsigned int m_endPathOffset
std::vector< WorkerTimingSummary > workerSummaries
T mod(const T &a, const T &b)
Definition: ecalDccMap.h:4
std::vector< std::vector< PathTiming > > m_streamPathTiming
double realTime() const
Definition: CPUTimer.cc:150
tuple size
Write out results.
const SystemTimeKeeper& edm::SystemTimeKeeper::operator= ( const SystemTimeKeeper )
privatedelete
SystemTimeKeeper::PathTiming & SystemTimeKeeper::pathTiming ( StreamContext const &  iStream,
PathContext const &  iPath 
)
private

Definition at line 113 of file SystemTimeKeeper.cc.

References assert(), edm::PathContext::isEndPath(), m_endPathOffset, m_streamPathTiming, hltrates_dqm_sourceclient-live_cfg::offset, edm::PathContext::pathID(), edm::StreamContext::streamID(), and edm::StreamID::value().

Referenced by pauseModuleEvent(), startPath(), stopModuleEvent(), and stopPath().

114  {
115  unsigned int offset = 0;
116  if(iPath.isEndPath()) {
117  offset = m_endPathOffset;
118  }
119  assert(iPath.pathID()+offset < m_streamPathTiming[iStream.streamID().value()].size());
120  return m_streamPathTiming[iStream.streamID().value()][iPath.pathID()+offset];
121 }
assert(m_qm.get())
unsigned int m_endPathOffset
std::vector< std::vector< PathTiming > > m_streamPathTiming
void SystemTimeKeeper::pauseModuleEvent ( StreamContext const &  iStream,
ModuleCallingContext const &  iModule 
)

Definition at line 180 of file SystemTimeKeeper.cc.

References edm::ModuleDescription::id(), edm::ParentContext::kPlaceInPath, m_minModuleID, edm::SystemTimeKeeper::PathTiming::m_moduleTiming, m_streamModuleTiming, mod(), edm::ModuleCallingContext::moduleDescription(), pathTiming(), edm::ModuleCallingContext::placeInPathContext(), edm::StreamContext::streamID(), create_public_lumi_plots::times, edm::ModuleCallingContext::type(), and edm::StreamID::value().

Referenced by edm::endpathsAreActive_().

181  {
182  auto& mod =
183  m_streamModuleTiming[iStream.streamID().value()][iModule.moduleDescription()->id()-m_minModuleID];
184  auto times = mod.m_timer.stop();
185 
186  if(iModule.type() == ParentContext::Type::kPlaceInPath ) {
187  auto place = iModule.placeInPathContext();
188 
189  auto& modTiming = pathTiming(iStream,*(place->pathContext())).m_moduleTiming[place->placeInPath()];
190  modTiming.m_realTime += times;
191  }
192 
193 }
std::vector< ModuleInPathTiming > m_moduleTiming
std::vector< std::vector< ModuleTiming > > m_streamModuleTiming
PathTiming & pathTiming(StreamContext const &, PathContext const &)
T mod(const T &a, const T &b)
Definition: ecalDccMap.h:4
void SystemTimeKeeper::restartModuleEvent ( StreamContext const &  iStream,
ModuleCallingContext const &  iModule 
)

Definition at line 195 of file SystemTimeKeeper.cc.

References edm::ModuleDescription::id(), m_minModuleID, m_streamModuleTiming, mod(), edm::ModuleCallingContext::moduleDescription(), edm::StreamContext::streamID(), and edm::StreamID::value().

Referenced by edm::endpathsAreActive_().

196  {
197  auto& mod =
198  m_streamModuleTiming[iStream.streamID().value()][iModule.moduleDescription()->id()-m_minModuleID];
199  mod.m_timer.start();
200 }
std::vector< std::vector< ModuleTiming > > m_streamModuleTiming
T mod(const T &a, const T &b)
Definition: ecalDccMap.h:4
void SystemTimeKeeper::startEvent ( StreamID  iID)

Definition at line 126 of file SystemTimeKeeper.cc.

References m_numberOfEvents, m_streamEventTimer, and edm::StreamID::value().

Referenced by edm::endpathsAreActive_().

126  {
128  m_streamEventTimer[iID.value()].start();
129 }
std::atomic< unsigned int > m_numberOfEvents
unsigned int value() const
Definition: StreamID.h:46
std::vector< WallclockTimer > m_streamEventTimer
void SystemTimeKeeper::startModuleEvent ( StreamContext const &  iStream,
ModuleCallingContext const &  iModule 
)

Definition at line 159 of file SystemTimeKeeper.cc.

References edm::ModuleDescription::id(), m_minModuleID, m_streamModuleTiming, mod(), edm::ModuleCallingContext::moduleDescription(), edm::StreamContext::streamID(), and edm::StreamID::value().

Referenced by edm::endpathsAreActive_().

159  {
160  auto& mod =
161  m_streamModuleTiming[iStream.streamID().value()][iModule.moduleDescription()->id()-m_minModuleID];
162  mod.m_timer.start();
163  ++(mod.m_timesRun);
164 
165 }
std::vector< std::vector< ModuleTiming > > m_streamModuleTiming
T mod(const T &a, const T &b)
Definition: ecalDccMap.h:4
void SystemTimeKeeper::startPath ( StreamContext const &  iStream,
PathContext const &  iPath 
)

Definition at line 137 of file SystemTimeKeeper.cc.

References pathTiming().

Referenced by edm::endpathsAreActive_().

138  {
139  auto& timing = pathTiming(iStream,iPath);
140  timing.m_timer.start();
141 }
PathTiming & pathTiming(StreamContext const &, PathContext const &)
void SystemTimeKeeper::startProcessingLoop ( )

Definition at line 203 of file SystemTimeKeeper.cc.

References m_processingLoopTimer, and edm::CPUTimer::start().

Referenced by edm::endpathsAreActive_().

203  {
205 }
void start()
Definition: CPUTimer.cc:74
void SystemTimeKeeper::stopEvent ( StreamContext const &  iContext)

Definition at line 132 of file SystemTimeKeeper.cc.

References m_streamEventTimer, edm::StreamContext::streamID(), and edm::StreamID::value().

Referenced by edm::endpathsAreActive_().

132  {
133  m_streamEventTimer[iContext.streamID().value()].stop();
134 }
std::vector< WallclockTimer > m_streamEventTimer
void SystemTimeKeeper::stopModuleEvent ( StreamContext const &  iStream,
ModuleCallingContext const &  iModule 
)

Definition at line 166 of file SystemTimeKeeper.cc.

References edm::ModuleDescription::id(), edm::ParentContext::kPlaceInPath, m_minModuleID, edm::SystemTimeKeeper::PathTiming::m_moduleTiming, m_streamModuleTiming, mod(), edm::ModuleCallingContext::moduleDescription(), pathTiming(), edm::ModuleCallingContext::placeInPathContext(), edm::StreamContext::streamID(), create_public_lumi_plots::times, edm::ModuleCallingContext::type(), and edm::StreamID::value().

Referenced by edm::endpathsAreActive_().

167  {
168  auto& mod =
169  m_streamModuleTiming[iStream.streamID().value()][iModule.moduleDescription()->id()-m_minModuleID];
170  auto times = mod.m_timer.stop();
171 
172  if(iModule.type() == ParentContext::Type::kPlaceInPath ) {
173  auto place = iModule.placeInPathContext();
174 
175  auto& modTiming = pathTiming(iStream,*(place->pathContext())).m_moduleTiming[place->placeInPath()];
176  modTiming.m_realTime += times;
177  }
178 
179 }
std::vector< ModuleInPathTiming > m_moduleTiming
std::vector< std::vector< ModuleTiming > > m_streamModuleTiming
PathTiming & pathTiming(StreamContext const &, PathContext const &)
T mod(const T &a, const T &b)
Definition: ecalDccMap.h:4
void SystemTimeKeeper::stopPath ( StreamContext const &  iStream,
PathContext const &  iPath,
HLTPathStatus const &  iStatus 
)

Definition at line 144 of file SystemTimeKeeper.cc.

References i, edm::HLTPathStatus::index(), and pathTiming().

Referenced by edm::endpathsAreActive_().

146  {
147  auto& timing = pathTiming(iStream,iPath);
148  timing.m_timer.stop();
149 
150  //mark all modules up to and including the decision module as being visited
151  auto& modsOnPath = timing.m_moduleTiming;
152  for(unsigned int i = 0; i< iStatus.index()+1;++i) {
153  ++modsOnPath[i].m_timesVisited;
154  }
155 }
int i
Definition: DBlmapReader.cc:9
PathTiming & pathTiming(StreamContext const &, PathContext const &)
void SystemTimeKeeper::stopProcessingLoop ( )

Definition at line 208 of file SystemTimeKeeper.cc.

References m_processingLoopTimer, and edm::CPUTimer::stop().

Referenced by edm::endpathsAreActive_().

208  {
210 }
Times stop()
Definition: CPUTimer.cc:94

Member Data Documentation

unsigned int edm::SystemTimeKeeper::m_endPathOffset
private

Definition at line 108 of file SystemTimeKeeper.h.

Referenced by fillTriggerTimingReport(), pathTiming(), and SystemTimeKeeper().

unsigned int edm::SystemTimeKeeper::m_minModuleID
private
std::vector<const ModuleDescription*> edm::SystemTimeKeeper::m_modules
private

Definition at line 101 of file SystemTimeKeeper.h.

Referenced by fillTriggerTimingReport(), and SystemTimeKeeper().

std::vector<std::vector<std::string> > edm::SystemTimeKeeper::m_modulesOnPaths
private

Definition at line 103 of file SystemTimeKeeper.h.

Referenced by fillTriggerTimingReport(), and SystemTimeKeeper().

std::atomic<unsigned int> edm::SystemTimeKeeper::m_numberOfEvents
private

Definition at line 109 of file SystemTimeKeeper.h.

Referenced by fillTriggerTimingReport(), and startEvent().

std::vector<std::string> edm::SystemTimeKeeper::m_pathNames
private

Definition at line 102 of file SystemTimeKeeper.h.

Referenced by fillTriggerTimingReport(), and SystemTimeKeeper().

CPUTimer edm::SystemTimeKeeper::m_processingLoopTimer
private
std::vector<WallclockTimer> edm::SystemTimeKeeper::m_streamEventTimer
private

Definition at line 95 of file SystemTimeKeeper.h.

Referenced by fillTriggerTimingReport(), startEvent(), and stopEvent().

std::vector<std::vector<ModuleTiming> > edm::SystemTimeKeeper::m_streamModuleTiming
private
std::vector<std::vector<PathTiming> > edm::SystemTimeKeeper::m_streamPathTiming
private

Definition at line 97 of file SystemTimeKeeper.h.

Referenced by fillTriggerTimingReport(), pathTiming(), and SystemTimeKeeper().