diff options
author | Craig Tiller <ctiller@google.com> | 2017-04-12 09:09:17 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2017-04-12 09:09:17 -0700 |
commit | d835aa39d3f5a9ad247ea4dafa28da493f8352be (patch) | |
tree | a18dc07c6bbe4d58c4e43330c4c064be974752cd /tools | |
parent | dc3806c672ab8cd4ec0e03add1cf138c69cfd444 (diff) |
Cleanup output: omit unnecessary columns
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/profiling/microbenchmarks/bm_diff.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/profiling/microbenchmarks/bm_diff.py b/tools/profiling/microbenchmarks/bm_diff.py index 2337f2b282..35a79593b4 100755 --- a/tools/profiling/microbenchmarks/bm_diff.py +++ b/tools/profiling/microbenchmarks/bm_diff.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 = [] |