aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar ncteisen <ncteisen@gmail.com>2017-06-28 15:12:53 -0700
committerGravatar ncteisen <ncteisen@gmail.com>2017-06-28 15:12:53 -0700
commitd9edaa400eba7d387623db31338edcd9a10af653 (patch)
tree2b076f30b92a54e9354bae545b05fc78e1d95171
parentf2c5d33741f31bf124b8d36edc2d024299d0a028 (diff)
Fix bm_speedup
-rw-r--r--tools/profiling/microbenchmarks/bm_diff/bm_speedup.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/profiling/microbenchmarks/bm_diff/bm_speedup.py b/tools/profiling/microbenchmarks/bm_diff/bm_speedup.py
index 4b57d24ca3..61ef3de62f 100644
--- a/tools/profiling/microbenchmarks/bm_diff/bm_speedup.py
+++ b/tools/profiling/microbenchmarks/bm_diff/bm_speedup.py
@@ -44,13 +44,13 @@ def speedup(new, old, threshold = _DEFAULT_THRESHOLD):
s0, p0 = cmp(new, old)
if math.isnan(p0): return 0
if s0 == 0: return 0
- if p0 > _DEFAULT_THRESHOLD: return 0
+ if p0 > threshold: return 0
if s0 < 0:
pct = 1
while pct < 100:
sp, pp = cmp(new, scale(old, 1 - pct / 100.0))
if sp > 0: break
- if pp > _DEFAULT_THRESHOLD: break
+ if pp > threshold: break
pct += 1
return -(pct - 1)
else:
@@ -58,7 +58,7 @@ def speedup(new, old, threshold = _DEFAULT_THRESHOLD):
while pct < 10000:
sp, pp = cmp(new, scale(old, 1 + pct / 100.0))
if sp < 0: break
- if pp > _DEFAULT_THRESHOLD: break
+ if pp > threshold: break
pct += 1
return pct - 1