From bd959dff7691f499bd1a27071c7068c30a419faa Mon Sep 17 00:00:00 2001 From: Florian Fischer Date: Tue, 20 Aug 2019 23:04:41 +0200 Subject: use fewer maximal sizes to speedup benchmark Larson and Krishnan use only 1000 Byte as maximal size in their Paper "Memory Allocation for Long-Running Server Applications" --- src/benchmarks/larson.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/benchmarks/larson.py b/src/benchmarks/larson.py index 910fdf6..213ca0a 100644 --- a/src/benchmarks/larson.py +++ b/src/benchmarks/larson.py @@ -17,7 +17,7 @@ class Benchmark_Larson(Benchmark): self.cmd = "larson{binary_suffix} 1 8 {maxsize} 1000 50000 1 {threads}" self.args = { - "maxsize": [8, 32, 64, 128, 256, 512, 1024], + "maxsize": [64, 512, 1024], "threads": Benchmark.scale_threads_for_cpus(2) } -- cgit v1.2.3