aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/profiling
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2017-04-11 14:39:32 -0700
committerGravatar Craig Tiller <ctiller@google.com>2017-04-11 14:39:32 -0700
commitf597c7ccdd1b808e131862094b3ef175202f088c (patch)
tree443450d214ea03d3581608b73c46fb352bf3f376 /tools/profiling
parent763667ce29f3fdcef1134fd38b490f3399ee54f9 (diff)
Tighter threshold
Diffstat (limited to 'tools/profiling')
-rw-r--r--tools/profiling/microbenchmarks/speedup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/profiling/microbenchmarks/speedup.py b/tools/profiling/microbenchmarks/speedup.py
index 35d392a57d..8f9023d2c8 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.001
+_THRESHOLD = 0.0001
def scale(a, mul):
return [x*mul for x in a]