-
Notifications
You must be signed in to change notification settings - Fork 849
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
Newton-Krylov primal iterations & Krylov discrete adjoint #1183
Merged
Merged
Changes from all commits
Commits
Show all changes
35 commits
Select commit
Hold shift + click to select a range
6fe6c8e
working prototype
pcarruscag 8732e5d
make turb solvers more efficient for explicit eval, update build systems
pcarruscag e4bee8a
fix solver factory for nemo
pcarruscag 14b7897
fix mesh deformation using LinSysReact
pcarruscag c97221b
Merge branch 'simplify_fea_comms' into feature_newton
pcarruscag 5a838b9
no more coupling, too hard on linear solver
pcarruscag 479de47
Merge remote-tracking branch 'upstream/simplify_fea_comms' into featu…
pcarruscag 681b3b4
avoid mpi comm world
pcarruscag 3720dfa
add simd to some loops
pcarruscag 0c9ca5c
fix AD build
pcarruscag 85526e8
strong linear preconditioner
pcarruscag 88282bc
Merge remote-tracking branch 'upstream/develop' into feature_newton
pcarruscag 6304ffa
deduce nVar-per-point for comms from vector instead of matrix, makes …
pcarruscag fa24a80
move comms out of CSysMatrix
pcarruscag 200eb96
Merge remote-tracking branch 'upstream/develop' into feature_newton
pcarruscag 8ddba8c
add options to tune the NK strategy
pcarruscag 084c0a1
Merge branch 'develop' into feature_newton
pcarruscag d0851d1
Merge branch 'develop' into feature_newton
pcarruscag 8ac2b87
krylov the multizone adjoint inner iterations
pcarruscag c7e48fa
Merge branch 'fix_legacy_deformation' into feature_newton
pcarruscag 7f8589d
Merge remote-tracking branch 'upstream/develop' into feature_newton
pcarruscag 3d455e0
allocate UR in nemo variable, output min/avg/max cfl
pcarruscag bf8f084
faster check for normal direction in neighbor loops
pcarruscag ecee3af
Merge remote-tracking branch 'upstream/develop' into feature_newton
pcarruscag 8278d00
restarted FGMRES
pcarruscag 05cd390
Merge branch 'develop' into feature_newton
pcarruscag 21d94fd
Merge branch 'develop' into feature_newton
pcarruscag a341847
update authors in 2 files
pcarruscag 7ff35d7
Merge remote-tracking branch 'upstream/develop' into feature_newton
pcarruscag 79e6e43
add example and regression
pcarruscag ddb38d4
fix random bug in Check_IntElem_Orientation
pcarruscag 3ea3f98
race condition, reduce testcase duration, cleanup
pcarruscag 90342e7
try to make serial compile faster
pcarruscag 6047ba7
update regression
pcarruscag 6b82990
parallel regression instead of hybrid
pcarruscag 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
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
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.
I also moved the MPI comms of CSysVectors out of the matrix, in time we can make this even more generic to communicate anything that "looks like" a CSysVector which would allow us to communicate solution variables without having to define enum types for them.