aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Fischer <florian.fl.fischer@fau.de>2019-08-20 23:04:41 +0200
committerFlorian Fischer <florian.fl.fischer@fau.de>2019-08-20 23:04:41 +0200
commitbd959dff7691f499bd1a27071c7068c30a419faa (patch)
treea5dd48205b947a959cf3080029b6601062b4b98b
parentfb177140043d523545a141bc0902578f46f64031 (diff)
downloadallocbench-bd959dff7691f499bd1a27071c7068c30a419faa.tar.gz
allocbench-bd959dff7691f499bd1a27071c7068c30a419faa.zip
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"
-rw-r--r--src/benchmarks/larson.py2
1 files changed, 1 insertions, 1 deletions
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)
}