Skip to content

Commit

Permalink
Fix Expand (again) (#12)
Browse files Browse the repository at this point in the history
* Update optimizer.py

* simplify code

---------

Co-authored-by: inisis <[email protected]>
  • Loading branch information
xenova and inisis authored Jun 19, 2024
1 parent 44e5912 commit 87e491b
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions onnxslim/core/optimizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,10 +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 = 0 if idx == 1 else 1
delete_node(node, idx)
delete_node(node)
logger.debug(f"removing Expand op: {node.name}")
elif node.op == "Concat":
if len(node.inputs) == 1:
Expand Down

0 comments on commit 87e491b

Please sign in to comment.