diff options
author | Craig Tiller <ctiller@google.com> | 2017-02-22 13:45:01 -0800 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2017-02-22 13:45:01 -0800 |
commit | 385b00932cfcf86143c2c94c8bbc3bc396f71dbb (patch) | |
tree | 536628a37bc2dcbdfc3fe76f69d952782a50c84c /tools | |
parent | 2ec37e1bdbd45b09e77f819657ce3919767ce18b (diff) |
Cleanup
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/profiling/microbenchmarks/bm2bq.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tools/profiling/microbenchmarks/bm2bq.py b/tools/profiling/microbenchmarks/bm2bq.py index 8770fb71cf..b65aebc97f 100755 --- a/tools/profiling/microbenchmarks/bm2bq.py +++ b/tools/profiling/microbenchmarks/bm2bq.py @@ -104,6 +104,10 @@ bm_specs = { 'tpl': [], 'dyn': ['request_size', 'bandwidth_kilobits'], }, + 'BM_IsolatedFilter' : { + 'tpl': ['fixture', 'client_mutator'], + 'dyn': [], + } } def numericalize(s): @@ -160,7 +164,7 @@ def parse_name(name): for bm in js['benchmarks']: context = js['context'] if 'label' in bm: - labels_list = [s.split(':') for s in bm['label'].strip().split(' ')] + labels_list = [s.split(':') for s in bm['label'].strip().split(' ') if len(s) and s[0] != '#'] for el in labels_list: el[0] = el[0].replace('/iter', '_per_iteration') labels = dict(labels_list) |