aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Fischer <florian.fl.fischer@fau.de>2019-10-21 19:17:06 +0200
committerFlorian Fischer <florian.fl.fischer@fau.de>2019-10-21 19:17:06 +0200
commitfe427f2777361f879ee35c8c3915bdc99e4208b0 (patch)
tree57ff6917541701181e627821e2d7f0e550493730
parent3919dd1217e58291b79c555f7c6c11898f10330e (diff)
downloadallocbench-fe427f2777361f879ee35c8c3915bdc99e4208b0.tar.gz
allocbench-fe427f2777361f879ee35c8c3915bdc99e4208b0.zip
remove normalized plots from loop and t-test1
-rw-r--r--src/benchmarks/loop.py10
-rw-r--r--src/benchmarks/t_test1.py8
2 files changed, 1 insertions, 17 deletions
diff --git a/src/benchmarks/loop.py b/src/benchmarks/loop.py
index 5a957b9..1f6a831 100644
--- a/src/benchmarks/loop.py
+++ b/src/benchmarks/loop.py
@@ -47,7 +47,7 @@ class BenchmarkLoop(Benchmark):
def __init__(self):
name = "loop"
- self.cmd = "loop{binary_suffix} {nthreads} 1000001 {maxsize}"
+ self.cmd = "loop{binary_suffix} {nthreads} 1000000 {maxsize}"
self.args = {"maxsize": [2 ** x for x in range(6, 16)],
"nthreads": Benchmark.scale_threads_for_cpus(2)}
@@ -63,14 +63,6 @@ class BenchmarkLoop(Benchmark):
filepostfix="time",
autoticks=False)
- scale = list(self.results["allocators"].keys())[0]
- self.plot_fixed_arg("perm.nthreads / ({task-clock}/1000)",
- ylabel='"MOPS/cpu-second normalized {}"'.format(scale),
- title=f'"Loop: " + arg + " " + str(arg_value) + " normalized {scale}"',
- filepostfix="time.norm",
- scale=scale,
- autoticks=False)
-
# L1 cache misses
self.plot_fixed_arg("({L1-dcache-load-misses}/{L1-dcache-loads})*100",
ylabel='"L1 misses in %"',
diff --git a/src/benchmarks/t_test1.py b/src/benchmarks/t_test1.py
index 5d3c6cc..d892a15 100644
--- a/src/benchmarks/t_test1.py
+++ b/src/benchmarks/t_test1.py
@@ -47,14 +47,6 @@ class BenchmarkTTest1(Benchmark):
filepostfix="time",
autoticks=False)
- scale = list(self.results["allocators"].keys())[0]
- self.plot_fixed_arg(yval,
- ylabel='"Mops / CPU second scaled at {}"'.format(scale),
- title='"T-Test1: " + arg + " " + str(arg_value) + " normalized {}"'.format(scale),
- filepostfix="time.norm",
- scale=scale,
- autoticks=False)
-
# L1 cache misses
self.plot_fixed_arg("({L1-dcache-load-misses}/{L1-dcache-loads})*100",
ylabel='"L1 misses in %"',