-
Notifications
You must be signed in to change notification settings - Fork 36
Tupek/differentiable block solver #1518
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
37 commits
Select commit
Hold shift + click to select a range
1862206
Adding a block nonlinear solver.
tupek2 8299a98
Fix style, adding differentiable nonlinear block solver.
tupek2 a94e2fb
Fix style.
tupek2 906499b
Merge branch 'develop' into tupek/differentiable_block_solver
tupek2 6aa3047
Remove boundary condition option that causes some template priority o…
tupek2 218b75e
Still working on block nonlinear solver.
tupek2 b3e8349
SOme minor updates.
tupek2 c2ced3f
Trying to simplify adding new physics even more.
tupek2 8b30cd8
Working through new interface ideas, change newton linesearch default.
tupek2 39819b3
Some minor adjustments to interface, change default for NewtonLinears…
tupek2 c2684e8
Get an apparently working version of automating multiphysics solves.
tupek2 8e093ae
Fix style.
tupek2 3257700
Merge branch 'develop' into tupek/differentiable_block_solver
tupek2 9631ff4
Small adjustment to equation solver defaults to ignore linesearch ite…
tupek2 14fa86e
Style.
tupek2 e4a2c73
Address an assert and remove or improve some comments.
tupek2 2dd9dfd
Working through thermal mechanics details.
tupek2 59af3fe
Remove some duplication.
tupek2 956d6df
Fix style.
tupek2 348ab9f
Merge branch 'develop' into tupek/differentiable_block_solver
tupek2 553e03b
Merge branch 'develop' into tupek/differentiable_block_solver
tupek2 066976e
Spelling.
tupek2 c8c40a7
Use gretl with memory fix.
tupek2 e376248
Merge branch 'develop' into tupek/differentiable_block_solver
tupek2 c69acfb
Update gretl interfaece, try to fix memory, use more efficient checkp…
tupek2 0acd385
Point to main gretl after updates.
tupek2 6edfd83
Apply suggestions from code review
tupek2 03e280e
Apply suggestions from code review
tupek2 46d988f
Some review improves.
tupek2 ec40148
Fix more comments.
tupek2 c1392fc
Fix style.
tupek2 8be9014
Merge branch 'develop' into tupek/differentiable_block_solver
tupek2 39d9326
Update continuation solver.
tupek2 8936c8c
Merge branch 'develop' into tupek/differentiable_block_solver
tupek2 3ded725
Use up to date submodules, update to latest gretl.
tupek2 0762ae0
Merge branch 'develop' into tupek/differentiable_block_solver
btalamini a52ab61
Merge branch 'develop' into tupek/differentiable_block_solver
tupek2 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
Submodule gretl
updated
20 files
| +6 −1 | src/gretl/CMakeLists.txt | |
| +10 −155 | src/gretl/checkpoint.hpp | |
| +88 −0 | src/gretl/checkpoint_strategy.hpp | |
| +4 −6 | src/gretl/create_state.hpp | |
| +25 −18 | src/gretl/data_store.cpp | |
| +27 −18 | src/gretl/data_store.hpp | |
| +8 −8 | src/gretl/state.hpp | |
| +192 −0 | src/gretl/strumm_walther_checkpoint_strategy.cpp | |
| +75 −0 | src/gretl/strumm_walther_checkpoint_strategy.hpp | |
| +9 −2 | src/gretl/upstream_state.hpp | |
| +12 −11 | src/gretl/vector_state.cpp | |
| +120 −0 | src/gretl/wang_checkpoint_strategy.cpp | |
| +72 −0 | src/gretl/wang_checkpoint_strategy.hpp | |
| +4 −1 | src/tests/CMakeLists.txt | |
| +190 −18 | src/tests/test_gretl_checkpoint.cpp | |
| +178 −0 | src/tests/test_gretl_checkpoint_compare.cpp | |
| +2 −1 | src/tests/test_gretl_dynamics.cpp | |
| +4 −3 | src/tests/test_gretl_graph.cpp | |
| +1,705 −0 | src/tests/test_gretl_robustness.cpp | |
| +112 −0 | src/tests/test_persistent_scope.cpp |
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
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.
In the future, we could make utilities for (block vector -> subvector) and the inverse and stick them in common place.