diff options
Diffstat (limited to 'src/benchmarks/fd.py')
| -rw-r--r-- | src/benchmarks/fd.py | 26 |
1 files changed, 16 insertions, 10 deletions
diff --git a/src/benchmarks/fd.py b/src/benchmarks/fd.py index 6f88878..1fdd96a 100644 --- a/src/benchmarks/fd.py +++ b/src/benchmarks/fd.py @@ -67,19 +67,25 @@ class BenchmarkFd(Benchmark): os.link(src, dest) def summary(self): - plt.barplot_single_arg(self, - "{task-clock}", - ylabel="runtime in ms", - title="fd runtime", - file_postfix="runtime") + plt.plot(self, + "{task-clock}", + plot_type='bar', + fig_options={ + 'ylabel': "runtime in ms", + 'title': "fd runtime", + }, + file_postfix="runtime") plt.export_stats_to_dataref(self, "task-clock") - plt.barplot_single_arg(self, - "{VmHWM}", - ylabel="VmHWM in KB", - title="fd memusage", - file_postfix="memusage") + plt.plot(self, + "{VmHWM}", + plot_type='bar', + fig_options={ + 'ylabel': "VmHWM in KB", + 'title': "fd memusage" + }, + file_postfix="memusage") plt.export_stats_to_dataref(self, "VmHWM") |
