We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8902694 commit c7b3590Copy full SHA for c7b3590
src/qonnx/transformation/remove.py
@@ -62,9 +62,7 @@ def remove_node_and_rewire(model, node):
62
if model.is_join_node(node):
63
# Log this as a warning, so the user is aware of this, there might be
64
# somthing wrong or some checks missing at the caller site
65
- warnings.warn(
66
- "Tried to remove join-node operation: Currently not supported"
67
- )
+ warnings.warn("Removing join-node operation is currently not supported")
68
# Exit the function here without doing anything
69
return
70
# We already know that node is not a join-node, thus to rewire, we only need
0 commit comments