aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/profiling
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2017-04-12 06:54:40 -0700
committerGravatar Craig Tiller <ctiller@google.com>2017-04-12 06:54:40 -0700
commit2d7d5be813a53fc32046f338709b8c32d6bdd1fe (patch)
tree3c2c5b05165ac11b808899b3ff05b2bffcff26e5 /tools/profiling
parentf597c7ccdd1b808e131862094b3ef175202f088c (diff)
Increase threshold
Diffstat (limited to 'tools/profiling')
-rwxr-xr-xtools/profiling/microbenchmarks/bm_diff.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/profiling/microbenchmarks/bm_diff.py b/tools/profiling/microbenchmarks/bm_diff.py
index e4ef8df91c..c373860519 100755
--- a/tools/profiling/microbenchmarks/bm_diff.py
+++ b/tools/profiling/microbenchmarks/bm_diff.py
@@ -174,7 +174,7 @@ class Benchmark:
mdn_diff = abs(median(new) - median(old))
print '%s: new=%r old=%r mdn_diff=%r' % (f, new, old, mdn_diff)
s = speedup.speedup(new, old)
- if s and mdn_diff > 0.5:
+ if s and mdn_diff > 0.5 and abs(s) >= 10:
self.final[f] = '%+d%%' % s
return self.final.keys()