-
Notifications
You must be signed in to change notification settings - Fork 2k
sundials: add v7.1.1, v6.7.0, v5.8.0, add optional deps, fix CMake names #21664
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
Closed
Closed
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
b233903
sundials: add v6.6.2, v5.8.0
valgur ddb3440
sundials: add new lib, rmdir lib/cmake
valgur 6c4154f
sundials: bump to v6.7.0
valgur d4f7ad1
sundials: fix_apple_shared_install_name()
valgur 9d8ae24
sundials: set CMP0077 for older versions
valgur 39c279d
sundials: add a comment for the v5 v6 test split
valgur ec2ec66
sundials: add v7.1.1
valgur e536c0e
sundials: add lib suffix on v7 on Windows
valgur f5c1fb6
sundials: add optional deps, improve components
valgur ed0d899
sundials: restore old component names in < v5.8.0
valgur 687ae0b
sundials: fix import
valgur 7937708
sundials: avoid a Fortran compiler requirement
valgur e73c603
sunidals: fix cross-compilation
valgur f94b30a
Use openblas/0.3.28 for cross-compilation support
valgur 48ed333
sundials: drop Conan v1 support
valgur 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
find_dependency(CUDAToolkit REQUIRED) | ||
|
||
target_link_libraries(SUNDIALS::nveccuda INTERFACE CUDA::cudart) | ||
if(TARGET SUNDIALS::sunmatrixcusparse) | ||
target_link_libraries(SUNDIALS::sunmatrixcusparse INTERFACE CUDA::cusparse) | ||
endif() | ||
if(TARGET SUNDIALS::sunlinsolcusolversp) | ||
target_link_libraries(SUNDIALS::sunlinsolcusolversp INTERFACE CUDA::cusolver) | ||
endif() |
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
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,7 +1,13 @@ | ||
cmake_minimum_required(VERSION 3.1) | ||
cmake_minimum_required(VERSION 3.15) | ||
project(test_package LANGUAGES C) | ||
|
||
find_package(sundials REQUIRED CONFIG) | ||
find_package(SUNDIALS REQUIRED CONFIG) | ||
|
||
add_executable(${PROJECT_NAME} test_package.c) | ||
# SUNDIALS v6.0.0 introduced a new SUNContext object on which all other SUNDIALS objects depend | ||
# and is not backwards compatible. | ||
if(SUNDIALS_VERSION GREATER_EQUAL 6) | ||
add_executable(${PROJECT_NAME} test_package_v6.c) | ||
else() | ||
add_executable(${PROJECT_NAME} test_package_v5.c) | ||
endif() | ||
target_link_libraries(${PROJECT_NAME} PRIVATE sundials::sundials) |
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,18 @@ | ||
#include <nvector/nvector_serial.h> | ||
#include <sunmatrix/sunmatrix_dense.h> | ||
#include <sunlinsol/sunlinsol_dense.h> | ||
#include <sundials/sundials_types.h> | ||
|
||
int main() | ||
{ | ||
SUNContext sunctx; | ||
SUNContext_Create(0, &sunctx); | ||
N_Vector y = N_VNew_Serial(1, sunctx); | ||
NV_DATA_S(y)[0] = 2.0; | ||
SUNMatrix A = SUNDenseMatrix(1, 1, sunctx); | ||
SUNLinearSolver LS = SUNLinSol_Dense(y, A, sunctx); | ||
|
||
N_Vector v = N_VNew_Serial(1, sunctx); | ||
N_VScale(2.0, y, v); | ||
return 0; | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,4 +1,10 @@ | ||
versions: | ||
"7.1.1": | ||
folder: all | ||
"6.7.0": | ||
folder: all | ||
"5.8.0": | ||
folder: all | ||
"5.4.0": | ||
folder: all | ||
"5.3.0": | ||
|
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.
Uh oh!
There was an error while loading. Please reload this page.