-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
Add interface to use symmetric eigendecomposition with different lapack method #49355
Merged
Merged
Changes from all commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
3489557
Add LAPACK cheevd and zheevd wrapper
jaemolihm b630b74
Fix typo
jaemolihm f309c06
Update docs
jaemolihm 9cbb576
FIx typo
jaemolihm 5dc6dc5
Add docs
jaemolihm ddbd2c2
Add interface to real symmetric eigensolver syevd
jaemolihm f195e42
Add interface to use symmetric eigen with lapack_method
jaemolihm b67f1c3
Merge remote-tracking branch 'upstream/master' into lapack_xheevd
jaemolihm 0be8e13
Add default to lapack_method, remove one method
jaemolihm c66882f
Add doc
jaemolihm e36b52f
Use alg instead of lapack_method, add type assertion in eigvals
jaemolihm a69c9c6
Misc change in testset name
jaemolihm ebc5b96
Fix typo in docstring
jaemolihm 623c06d
Update svd docstring
jaemolihm f4d556d
Merge branch 'master' into lapack_xheevd
dkarrasch 015a4ae
Update stdlib/LinearAlgebra/src/symmetriceigen.jl
dkarrasch 5d05cd2
Merge branch 'master' into lapack_xheevd
dkarrasch e2d3b7c
add NEWS entry, adjust version compat
dkarrasch File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Isn't better to check for type?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't know. One could perhaps check with
@code_typed eigen!(A, QRIteration())
and see if that constant is propagated and the other branches are eliminated. If not, then the type check should help.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this is fine:
Even the
sorteig!
is compiled away.