From aa15300f8302bf713d752a775f32060b59b8746f Mon Sep 17 00:00:00 2001 From: Douglas Rumbaugh Date: Wed, 30 Apr 2025 13:06:56 -0400 Subject: Stats tweaks and KNN benchmark --- include/framework/scheduling/FIFOScheduler.h | 1 + 1 file changed, 1 insertion(+) (limited to 'include/framework/scheduling/FIFOScheduler.h') diff --git a/include/framework/scheduling/FIFOScheduler.h b/include/framework/scheduling/FIFOScheduler.h index 2f49b5f..8fbe07c 100644 --- a/include/framework/scheduling/FIFOScheduler.h +++ b/include/framework/scheduling/FIFOScheduler.h @@ -36,6 +36,7 @@ public: m_thrd_cnt((thread_cnt) ? thread_cnt : DEFAULT_MAX_THREADS), m_used_memory(0), m_used_thrds(0), m_shutdown(false) { m_sched_thrd = std::thread(&FIFOScheduler::run, this); + m_counter.store(0); m_thrd_pool.resize(m_thrd_cnt); } -- cgit v1.2.3