Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Handle len(pred_0.tensors) == 0 in is_same_node_merge #133

Merged
merged 1 commit into from
Jul 2, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions onnxconverter_common/optimizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -1595,6 +1595,8 @@ def is_same_node_merge(node_0, node_1, node):
continue
if pred_0.origin is not None or pred_1.origin is not None:
return False
if len(pred_0.tensors) == 0 or len(pred_1.tensors) == 0:
return False
val_0 = numpy_helper.to_array(pred_0.tensors[0])
val_1 = numpy_helper.to_array(pred_1.tensors[0])
if not np.array_equal(val_0, val_1):
Expand Down