diff options
| author | Florian Fischer <florian.fl.fischer@fau.de> | 2019-04-10 14:08:05 +0200 |
|---|---|---|
| committer | Florian Fischer <florian.fl.fischer@fau.de> | 2019-04-10 14:08:05 +0200 |
| commit | aff8b99af9b1c5a098c47191c90debd060c46cd7 (patch) | |
| tree | 0d836483227ffac281bfe55cbd8033e65ef5cc48 | |
| parent | 76fb0779b8fc8017acea5fe983e39d6e7b148770 (diff) | |
| download | allocbench-aff8b99af9b1c5a098c47191c90debd060c46cd7.tar.gz allocbench-aff8b99af9b1c5a098c47191c90debd060c46cd7.zip | |
fix normalized plots
| -rw-r--r-- | src/benchmarks/loop.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/benchmarks/loop.py b/src/benchmarks/loop.py index 2ec533e..099a578 100644 --- a/src/benchmarks/loop.py +++ b/src/benchmarks/loop.py @@ -23,7 +23,7 @@ class Benchmark_Loop(Benchmark): filepostfix="time", autoticks=False) - scale = list(self.allocators.keys())[0] + scale = list(self.results["allocators"].keys())[0] self.plot_fixed_arg("perm.nthreads / ({task-clock}/1000)", ylabel='"MOPS/cpu-second normalized {}"'.format(scale), title='"Loop: " + arg + " " + str(arg_value) + " normalized {}"'.format(scale), |
