Skip to content

Commit ed6d0cc

Browse files
authored
Merge pull request cms-sw#42533 from fwyzard/FastTimerService_workaround
Revert the time category for re-joining threads
2 parents 76d4079 + d8a3e8e commit ed6d0cc

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

HLTrigger/Timer/plugins/FastTimerService.cc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1787,7 +1787,8 @@ void FastTimerService::on_scheduler_entry(bool worker) {
17871787
// - not accounted: thread().measure()
17881788
// - considered as idle: thread().measure_and_accumulate(job_summary_.idle)
17891789
// - considered as other: thread().measure_and_accumulate(job_summary_.overhead)
1790-
thread().measure_and_accumulate(job_summary_.overhead);
1790+
// FIXME "considered as other" has been seen to produce unreliable results; revert to "not accounted" for the time being.
1791+
thread().measure();
17911792
}
17921793
}
17931794

0 commit comments

Comments
 (0)