aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Fischer <florian.fl.fischer@fau.de>2020-03-10 14:12:00 +0100
committerFlorian Fischer <florian.fl.fischer@fau.de>2020-03-10 14:12:00 +0100
commit75b23482330948e84b9893a51501c5e27ee8d3c5 (patch)
tree712ea032a3029d628b336feda907dc7d18953f6c
parent9509e5ff312f14ee1bc1c6b9432cbf87acd6437c (diff)
downloadallocbench-75b23482330948e84b9893a51501c5e27ee8d3c5.tar.gz
allocbench-75b23482330948e84b9893a51501c5e27ee8d3c5.zip
don't use perm in keydb plot titles
-rw-r--r--src/benchmarks/keydb.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/benchmarks/keydb.py b/src/benchmarks/keydb.py
index b8da614..343d356 100644
--- a/src/benchmarks/keydb.py
+++ b/src/benchmarks/keydb.py
@@ -112,12 +112,12 @@ class BenchmarkKeyDB(Benchmark):
def summary(self):
plt.plot_fixed_arg(self, "{totals_ops}",
ylabel="'OPS/second'",
- title="KeyDB Operations: {perm}",
+ title="KeyDB Operations - {arg}: {arg_value}",
file_postfix="total_ops")
plt.plot_fixed_arg(self, "{keydb_vmhwm}",
ylabel="'VmHWM [KB]'",
- title="KeyDB Memusage: {perm}",
+ title="KeyDB Memusage - {arg}: {arg_value}",
file_postfix="vmhwm")
keydb = BenchmarkKeyDB()