Skip to content

Commit

Permalink
Update optimizer.py
Browse files Browse the repository at this point in the history
  • Loading branch information
xenova authored Jun 19, 2024
1 parent 44e5912 commit 6eb2530
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion onnxslim/core/optimizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,8 +157,8 @@ 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, constant_variable = get_constant_variable(node, return_idx=True)
idx = 0 if idx == 1 else 1
delete_node(node, idx)
logger.debug(f"removing Expand op: {node.name}")
Expand Down

0 comments on commit 6eb2530

Please sign in to comment.