summaryrefslogtreecommitdiffstats
path: root/Tools/pybench/pybench.py
diff options
context:
space:
mode:
Diffstat (limited to 'Tools/pybench/pybench.py')
-rwxr-xr-xTools/pybench/pybench.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Tools/pybench/pybench.py b/Tools/pybench/pybench.py
index 7d90ba1..370175a 100755
--- a/Tools/pybench/pybench.py
+++ b/Tools/pybench/pybench.py
@@ -370,7 +370,7 @@ class Test:
if runs == 0:
return 0.0, 0.0, 0.0, 0.0
min_time = min(self.times)
- total_time = reduce(operator.add, self.times, 0.0)
+ total_time = sum(self.times)
avg_time = total_time / float(runs)
operation_avg = total_time / float(runs
* self.rounds
@@ -570,7 +570,7 @@ class Benchmark:
if runs == 0:
return 0.0, 0.0
min_time = min(self.roundtimes)
- total_time = reduce(operator.add, self.roundtimes, 0.0)
+ total_time = sum(self.roundtimes)
avg_time = total_time / float(runs)
max_time = max(self.roundtimes)
return (min_time, avg_time, max_time)