From 9dff629f186313beebb96594d236dd9268bef1b1 Mon Sep 17 00:00:00 2001 From: John Kacur Date: Wed, 26 Jan 2022 10:06:33 -0500 Subject: [PATCH] rteval: Increase default buckets from 2000 to 3500 Increase the default buckets from 2000 to 3500 With commit 0292c8963611 we skip statistics reporting if we run out of buckets. Increase the default number of buckets to make this less likely to occur. Signed-off-by: John Kacur --- doc/rteval.8 | 2 +- rteval/modules/measurement/cyclictest.py | 2 +- rteval/rteval.conf | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/rteval.8 b/doc/rteval.8 index fa24509ce7e5..25dcfcc298e7 100644 --- a/doc/rteval.8 +++ b/doc/rteval.8 @@ -122,7 +122,7 @@ Measurement thread interval in microseconds (default: 100) Interval increment in microseconds (default: 0) .TP .B \-\-cyclictest-buckets=NBUCKETS -Number of 1 microsecond histogram buckets (default: 2000) +Number of 1 microsecond histogram buckets (default: 3500) .TP .B \-\-hackbench-jobspercore=N Number of jobs per online-core for hackbench load diff --git a/rteval/modules/measurement/cyclictest.py b/rteval/modules/measurement/cyclictest.py index af8adeeeb402..5330d1466302 100644 --- a/rteval/modules/measurement/cyclictest.py +++ b/rteval/modules/measurement/cyclictest.py @@ -450,7 +450,7 @@ def ModuleParameters(): "default": 100, "metavar": "INTV_US"}, "buckets": {"descr": "Histogram width", - "default": 2000, + "default": 3500, "metavar": "NUM"}, "priority": {"descr": "Run cyclictest with the given priority", "default": 95, diff --git a/rteval/rteval.conf b/rteval/rteval.conf index 7ce6ef0b5acc..aa0a53bcfc63 100644 --- a/rteval/rteval.conf +++ b/rteval/rteval.conf @@ -6,7 +6,7 @@ duration: 60.0 report_interval: 600 [cyclictest] -buckets: 2000 +buckets: 3500 interval: 100 distance: 0 priority: 95 -- 2.34.1