Merge pull request #10604 from ctiller/bmdifffix

Fixes for bm_diff
pull/10565/merge
Craig Tiller 8 years ago committed by GitHub
commit 5a0cf32515
  1. 2
      tools/profiling/microbenchmarks/bm_diff.py
  2. 1
      tools/profiling/microbenchmarks/bm_json.py

@ -226,7 +226,7 @@ really_interesting = set()
for name, bm in benchmarks.items():
print name
really_interesting.update(bm.process())
fields = [f for f in args.track if f in args.track]
fields = [f for f in args.track if f in really_interesting]
headers = ['Benchmark'] + fields
rows = []

@ -203,4 +203,5 @@ def expand_json(js, js2 = None):
row['real_time'] = bm2['real_time']
row['iterations'] = bm2['iterations']
bm2['already_used'] = True
break
yield row

Loading…
Cancel
Save