diff options
author | ncteisen <ncteisen@gmail.com> | 2017-10-24 08:59:05 -0700 |
---|---|---|
committer | ncteisen <ncteisen@gmail.com> | 2017-10-24 08:59:05 -0700 |
commit | 4c9fa854f691726e73efeca20e7141c0f8dc10c6 (patch) | |
tree | ebe170cde2c0721ec5aaa3d6cfaeedb0fab6e2c4 /tools/profiling | |
parent | c296e82e11bfd6cb8aa4c796f2f7276595259be9 (diff) |
Add debugging prints
Diffstat (limited to 'tools/profiling')
-rw-r--r-- | tools/profiling/microbenchmarks/bm_json.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/profiling/microbenchmarks/bm_json.py b/tools/profiling/microbenchmarks/bm_json.py index bdd317405f..eb450ee6ad 100644 --- a/tools/profiling/microbenchmarks/bm_json.py +++ b/tools/profiling/microbenchmarks/bm_json.py @@ -157,6 +157,9 @@ def parse_name(name): rest = s[0] dyn_args = s[1:] name = rest + print (name) + print (dyn_args, _BM_SPECS[name]['dyn']) + print (tpl_args, _BM_SPECS[name]['tpl']) assert name in _BM_SPECS, '_BM_SPECS needs to be expanded for %s' % name assert len(dyn_args) == len(_BM_SPECS[name]['dyn']) assert len(tpl_args) == len(_BM_SPECS[name]['tpl']) |