-
Notifications
You must be signed in to change notification settings - Fork 83
Fix Onnx 23 Rotary Fusion #2576
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
Conversation
Signed-off-by: Ganesan Ramalingam <[email protected]>
Signed-off-by: Ganesan Ramalingam <[email protected]>
Codecov Report❌ Patch coverage is Additional details and impacted files@@ Coverage Diff @@
## main #2576 +/- ##
==========================================
- Coverage 70.10% 70.04% -0.06%
==========================================
Files 222 223 +1
Lines 26184 26215 +31
Branches 2581 2583 +2
==========================================
+ Hits 18355 18363 +8
- Misses 6929 6946 +17
- Partials 900 906 +6 ☔ View full report in Codecov by Sentry. |
Signed-off-by: Ganesan Ramalingam <[email protected]>
Nice: looks like the values now match
|
Signed-off-by: Ganesan Ramalingam <[email protected]>
Signed-off-by: Ganesan Ramalingam <[email protected]>
onnx_version = Version(onnx.__version__) | ||
min_version = Version("1.19.1") | ||
is_stable = not (onnx_version.is_devrelease or onnx_version.is_prerelease) | ||
if onnx_version >= min_version and is_stable: |
Check failure
Code scanning / CodeQL
Potentially uninitialized local variable Error
Copilot Autofix
AI 5 days ago
Copilot could not generate an autofix suggestion
Copilot could not generate an autofix suggestion for this alert. Try pushing a new commit or if the problem persists contact support.
Fix Onnx 23 Rotary Fusion