aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 %"',