Kaydet (Commit) f93bb262 authored tarafından Jesus Cea's avatar Jesus Cea

pybench prep_times calculation error (closes #11895)

üst 3f2b1849
...@@ -795,6 +795,7 @@ Steven Taschuk ...@@ -795,6 +795,7 @@ Steven Taschuk
Monty Taylor Monty Taylor
Amy Taylor Amy Taylor
Anatoly Techtonik Anatoly Techtonik
Mikhail Terekhov
Tobias Thelen Tobias Thelen
James Thomas James Thomas
Robin Thomas Robin Thomas
......
...@@ -278,7 +278,7 @@ class Test: ...@@ -278,7 +278,7 @@ class Test:
for i in calibration_loops: for i in calibration_loops:
pass pass
t = timer() - t t = timer() - t
prep_times.append(t) prep_times.append(t / CALIBRATION_LOOPS)
min_prep_time = min(prep_times) min_prep_time = min(prep_times)
if _debug: if _debug:
print print
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment