diff options
| author | Florian Fischer <florian.fl.fischer@fau.de> | 2020-06-10 14:08:27 +0200 |
|---|---|---|
| committer | Florian Fischer <florian.fl.fischer@fau.de> | 2020-06-10 14:08:27 +0200 |
| commit | bc67e478022a2909542d82e25099775a6a8c22fe (patch) | |
| tree | ff27c74b9df695359169b5f1b0b6a405b08a799d | |
| parent | fe6565f782dd7f9a0d5f60ce7cb5044a707544fa (diff) | |
| download | allocbench-bc67e478022a2909542d82e25099775a6a8c22fe.tar.gz allocbench-bc67e478022a2909542d82e25099775a6a8c22fe.zip | |
[espresso.py] use bar plots
| -rw-r--r-- | allocbench/benchmarks/espresso.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/allocbench/benchmarks/espresso.py b/allocbench/benchmarks/espresso.py index 7960286..cbe23f2 100644 --- a/allocbench/benchmarks/espresso.py +++ b/allocbench/benchmarks/espresso.py @@ -89,6 +89,7 @@ class BenchmarkEspresso(Benchmark): # L1 cache misses plt.plot(self, "({L1-dcache-load-misses}/{L1-dcache-loads})*100", + plot_type='bar', fig_options={ 'ylabel': "L1 misses in %", 'title': "Espresso l1 cache misses", @@ -99,6 +100,7 @@ class BenchmarkEspresso(Benchmark): # Memusage plt.plot(self, "{VmHWM}", + plot_type='bar', fig_options={ 'ylabel': "VmHWM in KB", 'title': "Espresso VmHWM", |
