From 0541f2a16333ab1b9739eb3d2a72acbc67089ffc Mon Sep 17 00:00:00 2001 From: Florian Fischer Date: Tue, 22 Jan 2019 13:01:37 +0100 Subject: save all results by default in results/hostname/timestamp --- src/larson.py | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) (limited to 'src/larson.py') 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() -- cgit v1.2.3