From ea037acbc0422fd8516e73e52892d0d045dcb4b4 Mon Sep 17 00:00:00 2001 From: lisyarus Date: Mon, 3 Jun 2024 23:25:50 +0300 Subject: [PATCH] Use 5%-accurate log-bucketing statistics in profiler --- libs/prof/source/profiler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/prof/source/profiler.cpp b/libs/prof/source/profiler.cpp index c9f5fbfc..b2bf2086 100644 --- a/libs/prof/source/profiler.cpp +++ b/libs/prof/source/profiler.cpp @@ -21,7 +21,7 @@ namespace psemek::prof profiler_tree * parent = nullptr; std::mutex * mutex = nullptr; - util::statistics_lite execution_time; + util::statistics_log_bucket execution_time; std::map children; std::vector::iterator> children_list;