-
Notifications
You must be signed in to change notification settings - Fork 125
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
[NDTensorsCUDAExt] Fix QR-based SVD for some rectangular matrices #1229
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
❗ Your organization needs to install the Codecov GitHub app to enable full functionality. Additional details and impacted files@@ Coverage Diff @@
## main #1229 +/- ##
===========================================
- Coverage 85.31% 54.54% -30.78%
===========================================
Files 89 88 -1
Lines 8445 8392 -53
===========================================
- Hits 7205 4577 -2628
- Misses 1240 3815 +2575 ☔ View full report in Codecov by Sentry. |
I see, it looks like other code is sending |
Maybe need to overload |
Looks good, thanks! |
Description
CUDA's QRAlgorithm fails when an
(N x M)
matrix hasN < M
. Here I fix this issue by catching the problem in the SVD dispatch and transposing the matrices and the resulting SVD.TODO