diff options
author | Craig Tiller <ctiller@google.com> | 2017-03-30 07:24:01 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2017-03-30 07:24:01 -0700 |
commit | 23e6a8a67872c97f965345d747a689868b3cb68f (patch) | |
tree | 88914e382248f9338720e406cf38a6b56f51bc4d /tools | |
parent | 9b4a3cd984ee79478dcdb0d7bde757d78cb9db69 (diff) |
Use medians, increase threshold
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/profiling/microbenchmarks/bm_diff.py | 22 |
1 files changed, 15 insertions, 7 deletions
diff --git a/tools/profiling/microbenchmarks/bm_diff.py b/tools/profiling/microbenchmarks/bm_diff.py index 4539ef7e41..2c4e572d12 100755 --- a/tools/profiling/microbenchmarks/bm_diff.py +++ b/tools/profiling/microbenchmarks/bm_diff.py @@ -49,6 +49,14 @@ def changed_ratio(n, o): if o == 0: return 100 return (float(n)-float(o))/float(o) +def median(ary): + ary = sorted(ary) + n = len(ary) + if n%2 == 0: + return (ary[n/2] + ary[n/2+1]) / 2.0 + else: + return ary[n/2] + def min_change(pct): return lambda n, o: abs(changed_ratio(n,o)) > pct/100.0 @@ -90,8 +98,8 @@ args = argp.parse_args() assert args.diff_base def avg(lst): - sum = 0 - n = 0 + sum = 0.0 + n = 0.0 for el in lst: sum += el n += 1 @@ -162,11 +170,11 @@ class Benchmark: old = self.samples[False][f] if not new or not old: continue p = stats.ttest_ind(new, old)[1] - new_avg = avg(new) - old_avg = avg(old) - delta = new_avg - old_avg - ratio = changed_ratio(new_avg, old_avg) - if p < args.p_threshold and abs(delta) > 0.1 and abs(ratio) > 0.05: + new_mdn = median(new) + old_mdn = median(old) + delta = new_mdn - old_mdn + ratio = changed_ratio(new_mdn, old_mdn) + if p < args.p_threshold and abs(delta) > 0.1 and abs(ratio) > 0.1: self.final[f] = delta return self.final.keys() |