提交 bc7bd0a2 编写于 作者: L Liangliang He

Update tf_ops_stats.py to print not fully defined shape

上级 2e062c5a
...@@ -68,7 +68,7 @@ def main(unused_args): ...@@ -68,7 +68,7 @@ def main(unused_args):
if input_name.endswith('weights:0') and input_name in tensor_shapes: if input_name.endswith('weights:0') and input_name in tensor_shapes:
ksize = tensor_shapes[input_name] ksize = tensor_shapes[input_name]
break break
print('%s(padding=%s, strides=%s, ksize=%s, format=%s) %s => %s' % (op.type, padding, strides, ksize, data_format, op.inputs[0].shape.as_list(), op.outputs[0].shape.as_list())) print('%s(padding=%s, strides=%s, ksize=%s, format=%s) %s => %s' % (op.type, padding, strides, ksize, data_format, op.inputs[0].shape, op.outputs[0].shape))
key = '%s(padding=%s, strides=%s, ksize=%s, format=%s)' % (op.type, padding, strides, ksize, data_format) key = '%s(padding=%s, strides=%s, ksize=%s, format=%s)' % (op.type, padding, strides, ksize, data_format)
hist_inc(stats, key) hist_inc(stats, key)
elif op.type in ['FusedResizeAndPadConv2D']: elif op.type in ['FusedResizeAndPadConv2D']:
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册