gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [gnunet] branch master updated: benchmark: collect max corr


From: gnunet
Subject: [GNUnet-SVN] [gnunet] branch master updated: benchmark: collect max correctly this time
Date: Thu, 27 Sep 2018 14:11:18 +0200

This is an automated email from the git hooks/post-receive script.

dold pushed a commit to branch master
in repository gnunet.

The following commit(s) were added to refs/heads/master by this push:
     new c5b6efe08 benchmark: collect max correctly this time
c5b6efe08 is described below

commit c5b6efe0873727ca88c3bcbfbf2c8f692d97400f
Author: Florian Dold <address@hidden>
AuthorDate: Thu Sep 27 14:09:32 2018 +0200

    benchmark: collect max correctly this time
---
 contrib/benchmark/collect.awk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/contrib/benchmark/collect.awk b/contrib/benchmark/collect.awk
index 62cbc69bc..b1e5977fd 100644
--- a/contrib/benchmark/collect.awk
+++ b/contrib/benchmark/collect.awk
@@ -49,7 +49,7 @@ function abs(v) {
       url[$2][$4]["time_us_sq"] += n * (t/n) * (t/n);
     }
     max = url[$2][$4]["time_us_max"];
-    url[$2][$4]["time_us_max"] = (t > max ? t : max)
+    url[$2][$4]["time_us_max"] = (t/n > max ? t/n : max)
   }
 }
 

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]