Skip to content

Commit

Permalink
Merge pull request #42534 from fwyzard/FastTimerService_workaround
Browse files Browse the repository at this point in the history
Revert the time category for re-joining threads [13.2.x]
  • Loading branch information
cmsbuild authored Aug 11, 2023
2 parents 6d5a9be + d8a3e8e commit 9fac15c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion HLTrigger/Timer/plugins/FastTimerService.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1787,7 +1787,8 @@ void FastTimerService::on_scheduler_entry(bool worker) {
// - not accounted: thread().measure()
// - considered as idle: thread().measure_and_accumulate(job_summary_.idle)
// - considered as other: thread().measure_and_accumulate(job_summary_.overhead)
thread().measure_and_accumulate(job_summary_.overhead);
// FIXME "considered as other" has been seen to produce unreliable results; revert to "not accounted" for the time being.
thread().measure();
}
}

Expand Down

0 comments on commit 9fac15c

Please sign in to comment.