diff options
author | Craig Tiller <ctiller@google.com> | 2017-04-20 10:48:57 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2017-04-20 10:48:57 -0700 |
commit | f2ea1d19f5d9abd358ae5c5fe33d5491c0b20556 (patch) | |
tree | 94d3622f2012cc178ee85e73f48af61bed3bb277 /tools/profiling | |
parent | a4894fcd023493602f8d23222671e550a78c1c24 (diff) |
Increase threshold probability for reporting differences
Diffstat (limited to 'tools/profiling')
-rw-r--r-- | tools/profiling/microbenchmarks/speedup.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/profiling/microbenchmarks/speedup.py b/tools/profiling/microbenchmarks/speedup.py index 5a1ed3f2cf..8af0066c9d 100644 --- a/tools/profiling/microbenchmarks/speedup.py +++ b/tools/profiling/microbenchmarks/speedup.py @@ -30,7 +30,7 @@ from scipy import stats import math -_THRESHOLD = 0.00001 +_THRESHOLD = 1e-10 def scale(a, mul): return [x*mul for x in a] |