summaryrefslogtreecommitdiff
path: root/bench/bench.py
diff options
context:
space:
mode:
Diffstat (limited to 'bench/bench.py')
-rw-r--r--bench/bench.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/bench/bench.py b/bench/bench.py
index 2acc29f8..a839ed65 100644
--- a/bench/bench.py
+++ b/bench/bench.py
@@ -110,7 +110,9 @@ def timer(func, *args, **kw):
return results
def display(label, results):
- total = reduce(lambda x, y: x+y, results, 0.0)
+ total = 0.0
+ for r in results:
+ total += r
print " %8.3f" % ((total * 1e6) / len(results)), ':', label
for func in FunctionList: