Skip to content

Commit

Permalink
enable other examples that may work with 32-bit indices
Browse files Browse the repository at this point in the history
  • Loading branch information
balos1 committed May 30, 2024
1 parent ebf3ff5 commit 240a563
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 14 deletions.
10 changes: 6 additions & 4 deletions examples/arkode/F2003_parallel/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,14 @@

# Example lists are tuples "name\;nodes\;tasks\;type" where the
# type is develop for examples excluded from 'make test' in releases
set(FARKODE_examples
"ark_brusselator1D_task_local_nls_f2003\;--monitor\;1\;4\;develop\;2"
"ark_brusselator1D_task_local_nls_f2003\;--monitor --global-nls\;1\;4\;develop\;2"
"ark_brusselator1D_task_local_nls_f2003\;--monitor --explicit --tf 3\;1\;4\;develop\;2"
)

if(SUNDIALS_INDEX_SIZE MATCHES "64")
set(FARKODE_examples
"ark_brusselator1D_task_local_nls_f2003\;--monitor\;1\;4\;develop\;2"
"ark_brusselator1D_task_local_nls_f2003\;--monitor --global-nls\;1\;4\;develop\;2"
"ark_brusselator1D_task_local_nls_f2003\;--monitor --explicit --tf 3\;1\;4\;develop\;2"
list(APPEND FARKODE_examples
"ark_diag_kry_bbd_f2003\;\;1\;4\;develop\;2"
"ark_diag_non_f2003\;\;1\;4\;develop\;2"
"ark_heat2D_f2003\;\;1\;4\;develop\;2")
Expand Down
3 changes: 1 addition & 2 deletions examples/cvode/F2003_serial/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,7 @@ set(FCVODE_examples
if(SUNDIALS_INDEX_SIZE MATCHES "64")

# Examples using SUNDIALS linear solvers
set(FCVODE_examples
"cv_advdiff_bnd_f2003\;develop"
list(APPEND FCVODE_examples
"cv_analytic_fp_f2003\;develop"
"cv_analytic_sys_dns_f2003\;develop"
"cv_analytic_sys_dns_jac_f2003\;develop"
Expand Down
11 changes: 3 additions & 8 deletions examples/cvodes/F2003_serial/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,9 @@
# Example lists are tuples "name\;args\;type" where the type is
# 'develop' for examples excluded from 'make test' in releases
set(FCVODES_examples
"cvs_analytic_fp_f2003\;\;develop")

if(SUNDIALS_INDEX_SIZE MATCHES "64")
list(APPEND FCVODES_examples
"cvsAdvDiff_FSA_non_f2003\;-sensi stg t\;develop"
"cvsAdvDiff_FSA_non_f2003\;-sensi sim t\;develop"
)
endif()
"cvs_analytic_fp_f2003\;\;develop"
"cvsAdvDiff_FSA_non_f2003\;-sensi stg t\;develop"
"cvsAdvDiff_FSA_non_f2003\;-sensi sim t\;develop")

# Specify libraries to link against
set(CVODES_LIB sundials_fcvodes_mod)
Expand Down

0 comments on commit 240a563

Please sign in to comment.