From fe427f2777361f879ee35c8c3915bdc99e4208b0 Mon Sep 17 00:00:00 2001 From: Florian Fischer Date: Mon, 21 Oct 2019 19:17:06 +0200 Subject: remove normalized plots from loop and t-test1 --- src/benchmarks/loop.py | 10 +--------- src/benchmarks/t_test1.py | 8 -------- 2 files changed, 1 insertion(+), 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 %"', -- cgit v1.2.3