BUG: numpy.array_api: fix linalg.cholesky upper decomp for complex dtypes#24777
Merged
rgommers merged 1 commit intonumpy:mainfrom Jan 3, 2024
Merged
BUG: numpy.array_api: fix linalg.cholesky upper decomp for complex dtypes#24777rgommers merged 1 commit intonumpy:mainfrom
numpy.array_api: fix linalg.cholesky upper decomp for complex dtypes#24777rgommers merged 1 commit intonumpy:mainfrom
Conversation
[skip travis] [skip azp] [skip circle] [skip cirrus]
rgommers
approved these changes
Jan 3, 2024
Member
rgommers
left a comment
There was a problem hiding this comment.
Thanks @lucascolley, this LGTM. The upstream definition fix got merged, and this seems clearly correct. It's easy to test now too, since np.linalg.cholesky recently gained an upper keyword (we don't want to change this PR though, because it'd be good for this code to work with numpy 1.25/1.26):
>>> A = np.array([[1,-2j], [2j,5]])
>>> np.linalg.cholesky(A)
array([[1.+0.j, 0.+0.j],
[0.+2.j, 1.+0.j]])
>>> np.array_api.linalg.cholesky(np.array_api.asarray(A))
Array([[1.+0.j, 0.+0.j],
[0.+2.j, 1.+0.j]], dtype=complex128)
>>> np.linalg.cholesky(A, upper=True)
array([[ 1.+0.j, -0.-2.j],
[ 0.+0.j, 1.+0.j]])
>>> np.array_api.linalg.cholesky(np.array_api.asarray(A), upper=True)
Array([[1.-0.j, 0.-2.j],
[0.-0.j, 1.-0.j]], dtype=complex128)So that matches, while in main the sign of the off-diagonal element is reversed.
Member
|
Adding the backport candidate, because it'd be nice if it were correct in 1.26.x if we do another bugfix release there. |
numpy.array_api: fix linalg.cholesky upper decomp for complex dtypesnumpy.array_api: fix linalg.cholesky upper decomp for complex dtypes
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.
Closes gh-24451
cc @asmeurer