-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2771a40
commit 03ba9e9
Showing
2 changed files
with
11 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
import onnxscript.optimizer | ||
import onnxscript.rewriter | ||
from onnxscript.rewriter import onnxruntime as ort_rewriter | ||
from onnxscript.ir import convenience as ir_convenience | ||
|
||
|
||
def export_to_onnx(input_model_path: str, output_model_path: str): | ||
Check warning Code scanning / lintrunner PYLINT/W0621 Warning test
Redefining name 'input_model_path' from outer scope (line 68) (redefined-outer-name)
See redefined-outer-name. To disable, use # pylint: disable=redefined-outer-name Check warning Code scanning / lintrunner PYLINT/W0621 Warning test
Redefining name 'output_model_path' from outer scope (line 69) (redefined-outer-name)
See redefined-outer-name. To disable, use # pylint: disable=redefined-outer-name |
||
""" | ||
|