aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Fischer <florian.fl.fischer@fau.de>2020-06-10 14:08:27 +0200
committerFlorian Fischer <florian.fl.fischer@fau.de>2020-06-10 14:08:27 +0200
commitbc67e478022a2909542d82e25099775a6a8c22fe (patch)
treeff27c74b9df695359169b5f1b0b6a405b08a799d
parentfe6565f782dd7f9a0d5f60ce7cb5044a707544fa (diff)
downloadallocbench-bc67e478022a2909542d82e25099775a6a8c22fe.tar.gz
allocbench-bc67e478022a2909542d82e25099775a6a8c22fe.zip
[espresso.py] use bar plots
-rw-r--r--allocbench/benchmarks/espresso.py2
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",