Skip to content
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

Create semi-structured Hypre solver interface for multi-variate systems #632

Merged
merged 41 commits into from
Aug 24, 2023
Merged
Show file tree
Hide file tree
Changes from 11 commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
98056af
Initial template of implementation of a Semi-Structured Hypre interfa…
lebuller May 10, 2023
ef224c4
Fixes to the semi-structured solver hypre interface in Cajita
lebuller May 11, 2023
79c03c0
Merge branch 'ECP-copa:master' into hypre_sstruct
lebuller May 11, 2023
e57ab13
Merge branch 'ECP-copa:master' into hypre_sstruct
lebuller May 15, 2023
af43471
Merge branch 'ECP-copa:master' into hypre_sstruct
lebuller May 18, 2023
d15933c
Makes changes to the Hypre Semi-Structured solver and creates and ini…
lebuller May 22, 2023
d7c6388
Updates to the semi-structured hypre solver and the related unit test…
lebuller May 23, 2023
f61f2a9
Adds calls to HYPRE_Init and HYPRE_Finalize to the hypre structured s…
lebuller May 23, 2023
40aaaa8
Merge pull request #1 from lebuller/hypre_init
lebuller May 23, 2023
e9231d5
Adds calls to HYPRE_Init and HYPRE_Finalize, as well as commenting ou…
lebuller May 23, 2023
7bed193
Merge branch 'ECP-copa:master' into hypre_sstruct
lebuller May 25, 2023
9662aa7
Moves HYPRE_Init and HYPRE_Finalize calls to examples/tests from the …
lebuller May 25, 2023
4197ffa
Merge remote-tracking branch 'origin/hypre_sstruct' into hypre_sstruct
lebuller May 25, 2023
d76442d
Adds multi-variate unit test and example for hypre (currently incompl…
lebuller May 30, 2023
4c336f9
Fixes multivariate usage for semi-structured solver
lebuller May 31, 2023
0099647
Alters semi-structured solver to talk varied stencil structures
lebuller Jun 2, 2023
abb8b24
Changes to interface between hypre LHS/RHS vectors and caban LHS/RHS …
lebuller Jun 5, 2023
5d49195
Fixes view handling when passing vector values to and from Hypre in m…
lebuller Jun 7, 2023
49cdff0
Merge branch 'master' into hypre_sstruct
lebuller Jun 7, 2023
4d82fcc
Cleanup for HypreSemiStructuredSolver
lebuller Jun 8, 2023
1fff289
Pass variable output file prefix to hypre print functions in the stru…
lebuller Jun 8, 2023
3e45edc
Fix error in matrix print for Hypre structured solver
lebuller Jun 8, 2023
b3afcfc
format
streeve Jun 14, 2023
0f11b7a
Convert hypre copies to per-variable subviews
streeve Jun 14, 2023
18cbc3e
Nicer form of copying data to and from hypre vector using subview
lebuller Jun 14, 2023
34a5c09
doxygen formatting
lebuller Jun 14, 2023
43a5db9
format
streeve Jun 15, 2023
dd5bd1d
Fix Dependency issue in SemiStrucutred Jacobi Preconditioner
lebuller Jun 19, 2023
3088803
Doxygen formatting
lebuller Jun 19, 2023
9c90ce5
fixup: ignore hypre derived impl for doxygen
streeve Jun 22, 2023
1048811
Addressing PR comments
lebuller Jun 23, 2023
4ddf12c
removes single-variate example for semi-structured solver and address…
lebuller Jul 6, 2023
330fa36
format
lebuller Jul 6, 2023
ee74864
Adds comment to commented out PFMG semi-strucutred test
lebuller Jul 7, 2023
45909cb
Remove unsupported PFMG solver class and tests
lebuller Jul 20, 2023
f34766a
Remove Jacobi preconditioner option for semi-structured solver + cleanup
lebuller Aug 9, 2023
127e492
Remove jacobi preconditioner from semi-structured example
lebuller Aug 9, 2023
1416b10
Fix bug with setting matrix values in coupled multi-variate solve
lebuller Aug 9, 2023
5636289
Final fixup for Hypre semi-structured solver
lebuller Aug 23, 2023
7fc5476
format
streeve Aug 24, 2023
3f20e2b
Update comments
streeve Aug 24, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions cajita/src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ set(HEADERS_PUBLIC
if(Cabana_ENABLE_HYPRE)
list(APPEND HEADERS_PUBLIC
Cajita_HypreStructuredSolver.hpp
Cajita_HypreSemiStructuredSolver.hpp
)
endif()

Expand Down
1 change: 1 addition & 0 deletions cajita/src/Cajita.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@

#ifdef Cabana_ENABLE_HYPRE
#include <Cajita_HypreStructuredSolver.hpp>
#include <Cajita_HypreSemiStructuredSolver.hpp>
#endif

#ifdef Cabana_ENABLE_HEFFTE
Expand Down
Loading