diff options
| author | Florian Fischer <florian.fl.fischer@fau.de> | 2019-08-25 12:52:57 +0200 |
|---|---|---|
| committer | Florian Fischer <florian.fl.fischer@fau.de> | 2019-08-25 12:53:55 +0200 |
| commit | b7dc9c5fcb51a29933d48d12e7ab13dc0fe6b01a (patch) | |
| tree | d210191519d4bae672e2bf2c08b5f91134c9237f | |
| parent | 7260fa67c9204b689b7ae06b7c180fd79ebd445a (diff) | |
| download | allocbench-b7dc9c5fcb51a29933d48d12e7ab13dc0fe6b01a.tar.gz allocbench-b7dc9c5fcb51a29933d48d12e7ab13dc0fe6b01a.zip | |
plot VmHWM
| -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() |
