提交 feb0f157 编写于 作者: W wjj19950828

deal with scalar tensor

上级 422a6b56
......@@ -740,9 +740,11 @@ class OpSet9():
def Unsqueeze(self, node):
val_x = self.graph.get_input_node(node, idx=0, copy=True)
axes = node.get_attr('axes')
if axes is not None:
if len(val_x.out_shapes[0]) == 0 and len(axes) == 1 and axes[
0] == 0:
if axes is None:
axes_node = self.graph.get_input_node(node, idx=1, copy=True)
axes = _const_weight_or_none(axes_node, necessary=True)
# deal with scalar(0D) tensor
if len(val_x.out_shapes[0]) == 0 and len(axes) == 1 and axes[0] == 0:
self.paddle_graph.add_layer(
'paddle.reshape',
inputs={"x": val_x.name},
......@@ -754,13 +756,6 @@ class OpSet9():
inputs={"x": val_x.name},
axis=axes,
outputs=[node.name])
else:
axes = self.graph.get_input_node(node, idx=1, copy=True)
self.paddle_graph.add_layer(
'paddle.unsqueeze',
inputs={"x": val_x.name,
"axis": axes.name},
outputs=[node.name])
@print_mapping_info
def Shrink(self, node):
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册