-
Notifications
You must be signed in to change notification settings - Fork 8
Adding asymmetric tests (from the data folder) for KLU, CuSolver, and RocSolver. #364
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
52 commits
Select commit
Hold shift + click to select a range
3cc3ae0
tests that are supposed to pass are passing
shakedregev 81fc4a4
fixed typos, removed unnecessary file
shakedregev c5b898a
Apply pre-commmit fixes
shakedregev e8d2032
renamed matrix files (not added before accidentally)
shakedregev 9d5df32
removed commented out code
shakedregev 5d6bfff
fixed failing tests
shakedregev e0ec030
Apply pre-commmit fixes
shakedregev 2b95d98
fixed commented out code
shakedregev fdfafb4
straggling comment
shakedregev e8acb76
Update tests/functionality/CMakeLists.txt
shakedregev 85368b7
Update tests/functionality/CMakeLists.txt
shakedregev ef6f549
Update tests/functionality/CMakeLists.txt
shakedregev 883b88a
fixed data path for lusol
shakedregev af9bc3f
consumer
shakedregev 65af129
fixed typo
shakedregev 5707b80
changing to sys refactor, which requires a path
shakedregev 8f08701
Fix for resolve_consumer to take in the matrices and right hand sides…
nkoukpaizan d61e235
adding generic test matrices
shakedregev a72c93c
modified numbering to suffix
shakedregev ddf501e
tests failing with well conditioned matrix
shakedregev abdf871
updating to better conditioned matrices
shakedregev 9010f37
SPD test passes consistently, others don't
shakedregev 746c2bb
still testing
shakedregev f84bb2e
changed matrices
shakedregev 9e09b87
updated matrices
shakedregev 1c28664
changed test mats
shakedregev 2573468
changed matrices
shakedregev 270d13b
symmetric test passing, asymmetric passing when run separately, but n…
shakedregev 9956b01
changed matrices
shakedregev 9ed9c53
changed tolerance to machine precision, tests pass!
shakedregev 3da9823
Apply pre-commmit fixes
shakedregev 6d8a85d
updated consumer
shakedregev 6b20508
fixed non IR related comments
shakedregev b273b0c
removed IR check, it passes with IR with the better scaled matrices
shakedregev 7575fc4
Apply pre-commmit fixes
shakedregev 0cfb149
Update tests/functionality/CMakeLists.txt
shakedregev 8383ab6
tests passing
shakedregev ae4fb5c
Apply pre-commmit fixes
shakedregev 9fa393b
fixed prints
shakedregev 415b81f
set convergence conditions
shakedregev 1da657f
setting convergence condition, but it's overridden
shakedregev 55ee465
set default to relative residual
shakedregev a1b5d4f
added default conv_cond
shakedregev ad7b224
Apply pre-commmit fixes
shakedregev 45ff111
Update examples/resolve_consumer/CMakeLists.txt
shakedregev ef8f5cf
addressed comment
shakedregev b6a4810
reverted change that made CI test not pass
shakedregev 3222810
made matrices consistent, tolerance too stringent
shakedregev f5e93d1
tests passing, renamed files to be consistent
shakedregev 40f90ac
addressed all comments, only tested on Frontier
shakedregev 9e64fd3
addressed comments
shakedregev 84693a9
removed straggling print
shakedregev 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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| # LUSOL disclaimer | ||
| LUSOL code is experimental and not actively maintained or supported. |
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.
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.
Not necessary to address in this PR, but is there a rationale for setting member variable to their default values in constructors? I'd double check that it's truly the default and remove the setting of
tol_,maxit_andconv_cond.