aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorFlorian Fischer <florian.fl.fischer@fau.de>2020-02-21 15:22:59 +0100
committerFlorian Fischer <florian.fl.fischer@fau.de>2020-02-21 15:22:59 +0100
commit0c4a1eb7a4e49872d495bcd8c26d4a0b0375e096 (patch)
treeb0661cad7929233c53d905e8bba607f78e4e1f06 /src
parent1f16104a45da5b4633e3b0c436e976192abecb0d (diff)
downloadallocbench-0c4a1eb7a4e49872d495bcd8c26d4a0b0375e096.tar.gz
allocbench-0c4a1eb7a4e49872d495bcd8c26d4a0b0375e096.zip
fix title of keydb plots
Diffstat (limited to 'src')
-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 2b831eb..743c895 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: ' + str(perm)",
+ title="KeyDB Operations: {perm}",
filepostfix="total_ops")
plt.plot_fixed_arg(self, "{keydb_vmhwm}",
ylabel="'VmHWM [KB]'",
- title="'KeyDB Memusage: ' + str(perm)",
+ title="KeyDB Memusage: {perm}",
filepostfix="vmhwm")
keydb = BenchmarkKeyDB()