-
Notifications
You must be signed in to change notification settings - Fork 54
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[API] Create stable APIs for PyTorch 2.5 #1832
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #1832 +/- ##
==========================================
- Coverage 75.13% 75.04% -0.09%
==========================================
Files 248 249 +1
Lines 26977 27037 +60
Branches 4926 4937 +11
==========================================
+ Hits 20268 20291 +23
- Misses 5762 5800 +38
+ Partials 947 946 -1 ☔ View full report in Codecov by Sentry. |
def check_model(model: ir.Model) -> None: | ||
"""Check the model.""" | ||
|
||
del model # Unused yet |
Check warning
Code scanning / CodeQL
Unnecessary delete statement in function Warning
model
check_model
Test Results 24 files ±0 24 suites ±0 2h 41m 36s ⏱️ - 10m 28s For more details on these failures and errors, see this check. Results for commit 014c676. ± Comparison against base commit e037aa0. ♻️ This comment has been updated with latest results. |
Create stable APIs for PyTorch 2.5 so that it does not need to use any internal ONNX Script APIs. Created APIs are
In pytorch, it is expected to write:
Fixes #1827