diff options
| author | Florian Fischer <florian.fl.fischer@fau.de> | 2019-08-20 23:04:41 +0200 |
|---|---|---|
| committer | Florian Fischer <florian.fl.fischer@fau.de> | 2019-08-20 23:04:41 +0200 |
| commit | bd959dff7691f499bd1a27071c7068c30a419faa (patch) | |
| tree | a5dd48205b947a959cf3080029b6601062b4b98b | |
| parent | fb177140043d523545a141bc0902578f46f64031 (diff) | |
| download | allocbench-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.py | 2 |
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) } |
