diff options
| author | Florian Fischer <florian.fl.fischer@fau.de> | 2020-02-21 15:22:59 +0100 |
|---|---|---|
| committer | Florian Fischer <florian.fl.fischer@fau.de> | 2020-02-21 15:22:59 +0100 |
| commit | 0c4a1eb7a4e49872d495bcd8c26d4a0b0375e096 (patch) | |
| tree | b0661cad7929233c53d905e8bba607f78e4e1f06 | |
| parent | 1f16104a45da5b4633e3b0c436e976192abecb0d (diff) | |
| download | allocbench-0c4a1eb7a4e49872d495bcd8c26d4a0b0375e096.tar.gz allocbench-0c4a1eb7a4e49872d495bcd8c26d4a0b0375e096.zip | |
fix title of keydb plots
| -rw-r--r-- | src/benchmarks/keydb.py | 4 |
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() |
