diff options
| author | Jesus Cea <jcea@jcea.es> | 2011-04-25 01:47:23 (GMT) |
|---|---|---|
| committer | Jesus Cea <jcea@jcea.es> | 2011-04-25 01:47:23 (GMT) |
| commit | 4f711726bee5c4977360ecd701d7e42feb8f51e2 (patch) | |
| tree | 76f3630f6e4e5e0b01130b0588b918cb72a64122 | |
| parent | 88f7841be7c59eea1eb5960b68190e6ca5486daa (diff) | |
| parent | b32321aed94bee8ea68fad79ed710670d0c1941c (diff) | |
| download | cpython-4f711726bee5c4977360ecd701d7e42feb8f51e2.zip cpython-4f711726bee5c4977360ecd701d7e42feb8f51e2.tar.gz cpython-4f711726bee5c4977360ecd701d7e42feb8f51e2.tar.bz2 | |
pybench prep_times calculation error (closes #11895)
| -rw-r--r-- | Misc/ACKS | 1 | ||||
| -rwxr-xr-x | Tools/pybench/pybench.py | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -859,6 +859,7 @@ Steven Taschuk Monty Taylor Amy Taylor Anatoly Techtonik +Mikhail Terekhov Tobias Thelen James Thomas Robin Thomas diff --git a/Tools/pybench/pybench.py b/Tools/pybench/pybench.py index 811ef96..8eaad63 100755 --- a/Tools/pybench/pybench.py +++ b/Tools/pybench/pybench.py @@ -276,7 +276,7 @@ class Test: for i in calibration_loops: pass t = timer() - t - prep_times.append(t) + prep_times.append(t / CALIBRATION_LOOPS) min_prep_time = min(prep_times) if _debug: print() |
