aboutsummaryrefslogtreecommitdiff
path: root/src/larson.py
diff options
context:
space:
mode:
authorFlorian Fischer <florian.fl.fischer@fau.de>2019-01-22 13:01:37 +0100
committerFlorian Fischer <florian.fl.fischer@fau.de>2019-01-22 13:01:37 +0100
commit0541f2a16333ab1b9739eb3d2a72acbc67089ffc (patch)
treeb6a918b7f4c377e2358289bbe8e55dfcfd9b8eff /src/larson.py
parent2002b64449e6383e43481d06efcfafac74a7cf8e (diff)
downloadallocbench-0541f2a16333ab1b9739eb3d2a72acbc67089ffc.tar.gz
allocbench-0541f2a16333ab1b9739eb3d2a72acbc67089ffc.zip
save all results by default in results/hostname/timestamp
Diffstat (limited to 'src/larson.py')
-rw-r--r--src/larson.py11
1 files changed, 4 insertions, 7 deletions
diff --git a/src/larson.py b/src/larson.py
index 713818b..0a4a237 100644
--- a/src/larson.py
+++ b/src/larson.py
@@ -30,25 +30,22 @@ class Benchmark_Larson( Benchmark ):
result["throughput"] = int(res.group("throughput"))
return
- def summary(self, sumdir):
+ def summary(self):
# Plot threads->throughput and maxsize->throughput
self.plot_fixed_arg("{throughput}/1000000",
ylabel="'MOPS/s'",
title = "'Larson: ' + arg + ' ' + str(arg_value)",
- filepostfix = "throughput",
- sumdir=sumdir)
+ filepostfix = "throughput")
self.plot_fixed_arg("({L1-dcache-load-misses}/{L1-dcache-loads})*100",
ylabel="'l1 cache misses in %'",
title = "'Larson cache misses: ' + arg + ' ' + str(arg_value)",
- filepostfix = "cachemisses",
- sumdir=sumdir)
+ filepostfix = "cachemisses")
# Memusage
self.plot_fixed_arg("int({VmHWM})",
ylabel='"VmHWM in kB"',
title= '"Loop Memusage: " + arg + " " + str(arg_value)',
- filepostfix="memusage",
- sumdir=sumdir)
+ filepostfix="memusage")
larson = Benchmark_Larson()