diff options
author | Craig Tiller <ctiller@google.com> | 2017-03-31 09:44:23 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2017-03-31 09:44:23 -0700 |
commit | 81d3ba8d273b928d35ff8e13b909419d1af7a710 (patch) | |
tree | 3d7a41f727e22227839ec9050e34ef1575ee2206 /tools/profiling/microbenchmarks | |
parent | 66c76d653bf93fb94b108993f3bea916675147bc (diff) |
Tighten constraints for bm_diff to trigger
Diffstat (limited to 'tools/profiling/microbenchmarks')
-rwxr-xr-x | tools/profiling/microbenchmarks/bm_diff.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/profiling/microbenchmarks/bm_diff.py b/tools/profiling/microbenchmarks/bm_diff.py index 4255e29ff2..1dff3335ee 100755 --- a/tools/profiling/microbenchmarks/bm_diff.py +++ b/tools/profiling/microbenchmarks/bm_diff.py @@ -66,7 +66,7 @@ nanos = { } counter = { 'abs_diff': 0.5, - 'pct_diff': 0.5, + 'pct_diff': 5, } _INTERESTING = { @@ -102,7 +102,7 @@ argp.add_argument('-t', '--track', argp.add_argument('-b', '--benchmarks', nargs='+', choices=_AVAILABLE_BENCHMARK_TESTS, default=['bm_cq']) argp.add_argument('-d', '--diff_base', type=str) argp.add_argument('-r', '--repetitions', type=int, default=4) -argp.add_argument('-p', '--p_threshold', type=float, default=0.05) +argp.add_argument('-p', '--p_threshold', type=float, default=0.03) args = argp.parse_args() assert args.diff_base |