From 8db40ea050d0661fb57e436156173575f390916e Mon Sep 17 00:00:00 2001 From: Jambay Kinley Date: Wed, 5 Feb 2025 14:47:16 -0800 Subject: [PATCH] Remove print remnant (#1598) ## 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 --- olive/passes/onnx/graph_surgeries.py | 1 - 1 file changed, 1 deletion(-) diff --git a/olive/passes/onnx/graph_surgeries.py b/olive/passes/onnx/graph_surgeries.py index d32f4f3e0..2ad31ee70 100644 --- a/olive/passes/onnx/graph_surgeries.py +++ b/olive/passes/onnx/graph_surgeries.py @@ -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