diff options
author | Craig Tiller <ctiller@google.com> | 2017-03-10 09:52:25 -0800 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2017-03-10 09:52:25 -0800 |
commit | e736b705ccbffcf3914397638a5bf2f1f77abec3 (patch) | |
tree | eaff37ccde57aeea501d55f860eef456d507f406 | |
parent | 833adc20285f4f30d09b9c2a6092ef2c6a5e649f (diff) |
Add Zalloc to bq conversion table
-rw-r--r-- | tools/profiling/microbenchmarks/bm_json.py | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/tools/profiling/microbenchmarks/bm_json.py b/tools/profiling/microbenchmarks/bm_json.py index 2548ed736f..604823712f 100644 --- a/tools/profiling/microbenchmarks/bm_json.py +++ b/tools/profiling/microbenchmarks/bm_json.py @@ -78,22 +78,26 @@ _BM_SPECS = { 'tpl': ['fixture'], 'dyn': [], }, - 'BM_IsolatedFilter' : { + 'BM_IsolatedFilter': { 'tpl': ['fixture', 'client_mutator'], 'dyn': [], }, - 'BM_HpackEncoderEncodeHeader' : { + 'BM_HpackEncoderEncodeHeader': { 'tpl': ['fixture'], 'dyn': ['end_of_stream', 'request_size'], }, - 'BM_HpackParserParseHeader' : { + 'BM_HpackParserParseHeader': { 'tpl': ['fixture'], 'dyn': [], }, - 'BM_CallCreateDestroy' : { + 'BM_CallCreateDestroy': { 'tpl': ['fixture'], 'dyn': [], }, + 'BM_Zalloc': { + 'tpl': [], + 'dyn': ['request_size'], + }, } def numericalize(s): |