From e736b705ccbffcf3914397638a5bf2f1f77abec3 Mon Sep 17 00:00:00 2001 From: Craig Tiller Date: Fri, 10 Mar 2017 09:52:25 -0800 Subject: [PATCH] Add Zalloc to bq conversion table --- tools/profiling/microbenchmarks/bm_json.py | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/tools/profiling/microbenchmarks/bm_json.py b/tools/profiling/microbenchmarks/bm_json.py index 2548ed736f5..604823712f9 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):