diff options
| -rw-r--r-- | src/benchmarks/larson.py | 3 | ||||
| -rw-r--r-- | src/benchmarks/loop.py | 3 | ||||
| -rw-r--r-- | src/benchmarks/t_test1.py | 3 |
3 files changed, 3 insertions, 6 deletions
diff --git a/src/benchmarks/larson.py b/src/benchmarks/larson.py index 5ff74fb..a5c4a02 100644 --- a/src/benchmarks/larson.py +++ b/src/benchmarks/larson.py @@ -43,8 +43,7 @@ class Benchmark_Larson(Benchmark): self.plot_fixed_arg("({L1-dcache-load-misses}/{L1-dcache-loads})*100", ylabel="'l1 cache misses in %'", title="'Larson cache misses: ' + arg + ' ' + str(arg_value)", - filepostfix="cachemisses", - yerr=False) + filepostfix="cachemisses") larson = Benchmark_Larson() diff --git a/src/benchmarks/loop.py b/src/benchmarks/loop.py index 80aadae..58d4935 100644 --- a/src/benchmarks/loop.py +++ b/src/benchmarks/loop.py @@ -40,8 +40,7 @@ class Benchmark_Loop(Benchmark): ylabel='"L1 misses in %"', title='"Loop l1 cache misses: " + arg + " " + str(arg_value)', filepostfix="l1misses", - autoticks=False, - yerr=False) + autoticks=False) # Speed Matrix self.write_best_doublearg_tex_table("perm.nthreads / ({task-clock}/1000)", diff --git a/src/benchmarks/t_test1.py b/src/benchmarks/t_test1.py index 03da284..a2a6e0b 100644 --- a/src/benchmarks/t_test1.py +++ b/src/benchmarks/t_test1.py @@ -41,8 +41,7 @@ class Benchmark_t_test1(Benchmark): ylabel='"L1 misses in %"', title='"T-Test1 l1 cache misses: " + arg + " " + str(arg_value)', filepostfix="l1misses", - autoticks=False, - yerr=False) + autoticks=False) # Speed Matrix self.write_best_doublearg_tex_table(yval, |
