Skip to content

Commit

Permalink
update graph rewriter
Browse files Browse the repository at this point in the history
  • Loading branch information
inisis committed Jun 22, 2024
1 parent 3313c75 commit 164c2e4
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions onnxslim/core/graph_rewriter.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,9 +147,7 @@ def match_(node, pattern_node):
else:
if len(node_feeds) != len(pattern_node.input_names):
logger.debug(
"len(node_feeds) != len(pattern_node.input_names)",
len(node_feeds),
len(pattern_node.input_names),
f"len(node_feeds) != len(pattern_node.input_names) {len(node_feeds)} != {len(pattern_node.input_names)}",
)
return False

Expand Down

0 comments on commit 164c2e4

Please sign in to comment.