diff options
author | Craig Tiller <ctiller@google.com> | 2017-04-12 06:54:40 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2017-04-12 06:54:40 -0700 |
commit | 2d7d5be813a53fc32046f338709b8c32d6bdd1fe (patch) | |
tree | 3c2c5b05165ac11b808899b3ff05b2bffcff26e5 /tools/profiling/microbenchmarks | |
parent | f597c7ccdd1b808e131862094b3ef175202f088c (diff) |
Increase threshold
Diffstat (limited to 'tools/profiling/microbenchmarks')
-rwxr-xr-x | tools/profiling/microbenchmarks/bm_diff.py | 2 |
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() |