From d8a3e8e0cf343b1eb562042be89e9d7b25df9506 Mon Sep 17 00:00:00 2001 From: Andrea Bocci Date: Thu, 10 Aug 2023 16:57:57 +0200 Subject: [PATCH] Revert the time category for re-joining threads --- HLTrigger/Timer/plugins/FastTimerService.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/HLTrigger/Timer/plugins/FastTimerService.cc b/HLTrigger/Timer/plugins/FastTimerService.cc index a1ce3298bff81..42124864bdcd7 100644 --- a/HLTrigger/Timer/plugins/FastTimerService.cc +++ b/HLTrigger/Timer/plugins/FastTimerService.cc @@ -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(); } }