diff options
| -rw-r--r-- | src/benchmarks/blowup.py | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/src/benchmarks/blowup.py b/src/benchmarks/blowup.py index d3700e3..cc85643 100644 --- a/src/benchmarks/blowup.py +++ b/src/benchmarks/blowup.py @@ -60,10 +60,20 @@ class BenchmarkBlowup(Benchmark): title="blowup test", filepostfix="vmhwm") + plt.pgfplot(self, + self.iterate_args(self.results["args"]), + "'blowup'", + "{VmHWM}/1000", + xlabel="", + ylabel="VmHWM in MB", + title="blowup test", + postfix="vmhwm", + bar=True) + del allocators["Ideal-RSS"] del self.results["stats"]["Ideal-RSS"] - plt.export_stats_to_dataref(self, "VmHWM") + # plt.export_stats_to_dataref(self, "VmHWM") blowup = BenchmarkBlowup() |
