Skip to content

Commit

Permalink
Remove print remnant (#1598)
Browse files Browse the repository at this point in the history
## Describe your changes

## Checklist before requesting a review
- [ ] Add unit tests for this change.
- [ ] Make sure all tests can pass.
- [ ] Update documents if necessary.
- [ ] Lint and apply fixes to your code by running `lintrunner -a`
- [ ] Is this a user-facing change? If yes, give a description of this
change to be included in the release notes.
- [ ] Is this PR including examples changes? If yes, please remember to
update [example
documentation](https://github.com/microsoft/Olive/blob/main/docs/source/examples.md)
in a follow-up PR.

## (Optional) Issue link
  • Loading branch information
jambayk authored Feb 5, 2025
1 parent cd3cefb commit 8db40ea
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion olive/passes/onnx/graph_surgeries.py
Original file line number Diff line number Diff line change
Expand Up @@ -613,7 +613,6 @@ def __call__(self, model: ModelProto):
for node_name in dag.get_node_names():
op_type = dag.get_node_op_type(node_name)
node_proto = dag.get_node_proto(node_name)
# print(node_name)
if not (
op_type in {"Constant", "ConstantOfShape"}
and node_proto.attribute
Expand Down

0 comments on commit 8db40ea

Please sign in to comment.