diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/benchmarks/cfrac.py | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/src/benchmarks/cfrac.py b/src/benchmarks/cfrac.py index a2a5c7b..c82b3da 100644 --- a/src/benchmarks/cfrac.py +++ b/src/benchmarks/cfrac.py @@ -25,8 +25,15 @@ class Benchmark_Cfrac(Benchmark): title='"Cfrac l1 cache misses"', filepostfix="l1misses") - self.export_stats_to_csv("task-clock") + # Memusage + self.barplot_single_arg("{VmHWM}", + ylabel='"VmHWM in KB"', + title='"Cfrac WmHWM"', + filepostfix="vmhwm") + self.export_stats_to_dataref("task-clock") + self.export_stats_to_dataref("VmWHM") + -cfrac = Benchmark_Cfrac()
\ No newline at end of file +cfrac = Benchmark_Cfrac() |
