Clarify documentation of singularity/rank-deficiency checks#924
Merged
langou merged 8 commits intoReference-LAPACK:masterfrom Jul 25, 2024
Merged
Clarify documentation of singularity/rank-deficiency checks#924langou merged 8 commits intoReference-LAPACK:masterfrom
langou merged 8 commits intoReference-LAPACK:masterfrom
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #924 +/- ##
=======================================
Coverage 0.00% 0.00%
=======================================
Files 1930 1930
Lines 190055 190055
=======================================
Misses 190055 190055 ☔ View full report in Codecov by Sentry. |
langou
previously approved these changes
Nov 2, 2023
Author
|
Please note that I am still working on this PR, it is not ready for merge yet. Hence the draft status. |
langou
previously approved these changes
Nov 13, 2023
Author
|
This is now ready for review and merge. |
Author
|
@langou If there are no objections, this is ready for merge when convenient. |
added 8 commits
July 25, 2024 12:50
langou
approved these changes
Jul 25, 2024
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
This PR fixes and closes #918, by changing the relevant parts of the docs.
*TRTRS, *TBTRS and *TPTRS
A check is made to verify that A is nonsingular.with the following:> 0: if INFO = i, the i-th diagonal element of A is zero,with> 0: if INFO = i, the i-th diagonal element of A is exactly zero,Callers of *TRTRS: *GELS, *GELST, *GETSLS, *GGLSE, *GGGLM
It is assumed that A has full rank.with the following:> 0: if INFO = i, the i-th diagonal element of the triangular factor of A is zerowith> 0: if INFO = i, the i-th diagonal element of the triangular factor of A is exactly zeroRQ factorization of the pair (B, A) is singularwithRQ factorization of the pair (B, A) is exactly singularQR factorization of the pair (A, B) is singularwithQR factorization of the pair (A, B) is exactly singularCallers of *TBTRS:
Callers of *TPTRS:
Checklist