Skip to content

Commit

Permalink
[Bug Fix] Add missing line (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
xenova authored Jun 19, 2024
1 parent b7100a6 commit 44e5912
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions onnxslim/core/optimizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,7 @@ def graph_constant_fold_inplace(graph):
delete_node(node, idx)
logger.debug(f"removing Add op: {node.name}")
elif node.op == "Expand":
idx, constant_variable = get_constant_variable(node, return_idx=True)
if len(node.inputs) > 1 and isinstance(node.inputs[1], Constant) and np.all(node.inputs[1].values == 1):
idx = 0 if idx == 1 else 1
delete_node(node, idx)
Expand Down

0 comments on commit 44e5912

Please sign in to comment.