diff options
| author | Florian Fischer <florian.fl.fischer@fau.de> | 2019-04-10 11:57:19 +0200 |
|---|---|---|
| committer | Florian Fischer <florian.fl.fischer@fau.de> | 2019-04-10 11:57:19 +0200 |
| commit | cbe2358d60e147fe11395ce32442a3a36cc02aff (patch) | |
| tree | 9c131b9c0f152a922ff37be760482dacb2df7df3 | |
| parent | 9dfe94f5998ae47a515424d986983f0152936f84 (diff) | |
| download | allocbench-cbe2358d60e147fe11395ce32442a3a36cc02aff.tar.gz allocbench-cbe2358d60e147fe11395ce32442a3a36cc02aff.zip | |
use autoticks for loop plots
| -rw-r--r-- | src/benchmarks/loop.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/benchmarks/loop.py b/src/benchmarks/loop.py index bf12b1e..b2794e6 100644 --- a/src/benchmarks/loop.py +++ b/src/benchmarks/loop.py @@ -20,13 +20,15 @@ class Benchmark_Loop(Benchmark): self.plot_fixed_arg("perm.nthreads / ({task-clock}/1000)", ylabel='"MOPS/cpu-second"', title='"Loop: " + arg + " " + str(arg_value)', - filepostfix="time") + filepostfix="time", + autoticks=False) # L1 cache misses self.plot_fixed_arg("({L1-dcache-load-misses}/{L1-dcache-loads})*100", ylabel='"L1 misses in %"', title='"Loop l1 cache misses: " + arg + " " + str(arg_value)', - filepostfix="l1misses") + filepostfix="l1misses", + autoticks=False) # Speed Matrix self.write_best_doublearg_tex_table("perm.nthreads / ({task-clock}/1000)", |
