提交 ee750865 authored 作者: Ying Zhang's avatar Ying Zhang

add broadcastable judgement

上级 ed701f28
......@@ -3713,7 +3713,9 @@ def local_useless_reshape(node):
"""
if isinstance(node.op, T.Reshape):
if node.inputs[0].ndim == 1 and node.outputs[0].ndim == 1:
if (node.inputs[0].ndim == 1 and node.outputs[0].ndim == 1 and
node.inputs[0].broadcastable == \
node.outputs[0].broadcastable):
return [node.inputs[0]]
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论