diff options
author | Craig Tiller <ctiller@google.com> | 2017-04-19 09:18:57 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2017-04-19 09:18:57 -0700 |
commit | e530845d91c118e3176d116d58420c9e3afa44b0 (patch) | |
tree | 4ffc6134c9b8ce553ddede812d760e956d9fb741 /tools/profiling | |
parent | ad7f066b16bcd62cf36bf78f78ae0ae0f8ca242e (diff) |
Also increase threshold for significant 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 b3888e5ea8..5a1ed3f2cf 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.0001 +_THRESHOLD = 0.00001 def scale(a, mul): return [x*mul for x in a] |