diff options
Diffstat (limited to 'src/benchmarks/raxmlng.py')
| -rw-r--r-- | src/benchmarks/raxmlng.py | 26 |
1 files changed, 16 insertions, 10 deletions
diff --git a/src/benchmarks/raxmlng.py b/src/benchmarks/raxmlng.py index 8c8b878..ef77d2d 100644 --- a/src/benchmarks/raxmlng.py +++ b/src/benchmarks/raxmlng.py @@ -82,19 +82,25 @@ class BenchmarkRaxmlng(Benchmark): result["runtime"] = RUNTIME_RE.search(stdout).group("runtime") def summary(self): - plt.barplot_single_arg(self, - "{runtime}", - ylabel='"runtime in s"', - title='"raxml-ng tree inference benchmark"', - file_postfix="runtime") + plt.plot(self, + "{runtime}", + plot_type='bar', + fig_options={ + 'ylabel': 'runtime in s', + 'title': 'raxml-ng tree inference benchmark', + }, + file_postfix="runtime") plt.export_stats_to_dataref(self, "runtime") - plt.barplot_single_arg(self, - "{VmHWM}", - ylabel='"VmHWM in KB"', - title='"raxml-ng memusage"', - file_postfix="memusage") + plt.plot(self, + "{VmHWM}", + plot_type='bar', + fig_options={ + 'ylabel': 'VmHWM in KB', + 'title': 'raxml-ng memusage', + }, + file_postfix="memusage") plt.export_stats_to_dataref(self, "VmHWM") |
