-
Notifications
You must be signed in to change notification settings - Fork 5
Refactor orthogonalization and nullspace interface #79
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
Merged
Merged
Changes from all commits
Commits
Show all changes
47 commits
Select commit
Hold shift + click to select a range
6d43f15
`left_orth` and `right_orth` with `@functiondef`
lkdvos 9c558d9
refactor truncationintersection for type stability
lkdvos 651dca3
factor out `linearmap.jl`
lkdvos d4da1ec
refactor orth algorithm selection
lkdvos 136cf62
add algorithm traits
lkdvos 545ef5d
refactor left_orth and right_orth implementations
lkdvos 1d06840
refactor null algorithm selection
lkdvos b68d8c8
refactor null implementation
lkdvos 4c31a36
more algorithm traits
lkdvos 18b5a94
`left_null` and `right_null` with `@functiondef`
lkdvos 3b98df6
reorganize algorithm unions
lkdvos 1541f9f
refactor null truncation
lkdvos 08944ec
update docstrings
lkdvos 67dc55a
disambiguate alg selection
lkdvos 3fc6cbb
update tests
lkdvos fdbb86c
more docs updates
lkdvos 0559aee
mark randomized SVD as unusable for nullspaces
lkdvos 86f0c8d
fix JET complaint
lkdvos 84537c7
docstring reorganization
lkdvos e8d8b12
improve truncation
lkdvos 01ee394
headers
lkdvos c0fda8c
fix merge
lkdvos 3bc0081
work out alternate proposition
lkdvos d3e155b
unpack algorithms
lkdvos 437ed8c
rework traits
lkdvos f6266ea
also include null implementation
lkdvos 6bc158a
maybeblasmat
lkdvos c7942c0
fix docs build
lkdvos f547ae0
some cleanup
lkdvos b3407a2
fix type stability again
lkdvos 916fc28
update gpu tests
lkdvos 14bc3c7
address some review comments
lkdvos d45cfa9
some AMD fixes
lkdvos 2b62dfd
some more AMD fixes
lkdvos adc36bb
more more AMD fixes
lkdvos 9c916af
move lqviatransposedqr
lkdvos 185d939
no randomized svd for null
lkdvos f89a318
no initialization for orthnull with SVD
lkdvos 878b428
fix docstring
lkdvos 1744416
more more more AMD fixes
lkdvos 54dda05
Revert "no randomized svd for null"
lkdvos 15ff6ae
update syntax for leftorth
lkdvos aff5766
update algselector docstrings
lkdvos afa64bc
migrate logic from constructors to functions
lkdvos fb60fe3
also update docs
lkdvos a2b7e9a
remove unnecessary overloads
lkdvos f044228
apply suggestions
lkdvos 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 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
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
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
Oops, something went wrong.
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.
Are the methods below ambiguous with the methods above? They seem strictly more specific. Or are they ambiguous with methods that specify
::NoTruncationbut notTU<:ROCMatrix?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.
The latter, I special-cased
::NoTruncationfor the*_nullimplementations and this is ambiguous with the overall special-cased truncate defined above. I think in general these GPU methods still require scalar indexing, so it's not actually fully supported yet anyways, so we will probably revisit this and update that in the near future as well, but that doesn't have to be tackled in this PR