diff options
author | Craig Tiller <ctiller@google.com> | 2017-03-27 22:29:15 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2017-03-27 22:29:15 -0700 |
commit | cc7d9873f76e3a2d6b799b358a1b4953307927b3 (patch) | |
tree | 59c6b5c9b2606e5c3c4d60c289f27952a2c393b8 /tools | |
parent | 4274925f833722224fddc0372c9a1e5b7ab1f6a8 (diff) |
Bugfix12
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/profiling/microbenchmarks/bm_diff.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/profiling/microbenchmarks/bm_diff.py b/tools/profiling/microbenchmarks/bm_diff.py index 0d21607794..7726868a8b 100755 --- a/tools/profiling/microbenchmarks/bm_diff.py +++ b/tools/profiling/microbenchmarks/bm_diff.py @@ -137,6 +137,7 @@ class Benchmark: new = self.samples[True][f] old = self.samples[False][f] if not new or not old: continue + print f, new, old p = stats.ttest_ind(new, old) if p < args.p_threshold: self.final[f] = avg(new) - avg(old) |