Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,17 @@
The shared library version numbers for the oneMKL dense linear solver and
matrix as well as the PETSc SNES nonlinear solver have been corrected.

Fixed a CMake bug where the MRI H-Tol controller was not included in the ARKODE
Fortran module.

Fixed a bug in the CUDA and HIP implementations of `SUNMemoryHelper_CopyAsync`
where the execution stream is not extracted correctly from the helper when a
stream is not provided to `SUNMemoryHelper_CopyAsync`.

Fixed a bug in MRIStep where a segfault would occur when an MRI coupling table
is not explicitly set and an MRI integrator is nested inside another MRI
integrator.

### Deprecation Notices

## Changes to SUNDIALS in release 7.4.0
Expand Down
7 changes: 7 additions & 0 deletions doc/shared/RecentChanges.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,15 @@
The shared library version numbers for the oneMKL dense linear solver and
matrix as well as the PETSc SNES nonlinear solver have been corrected.

Fixed a CMake bug where the MRI H-Tol controller was not included in the ARKODE
Fortran module.

Fixed a bug in the CUDA and HIP implementations of ``SUNMemoryHelper_CopyAsync``
where the execution stream is not extracted correctly from the helper when a
stream is not provided to ``SUNMemoryHelper_CopyAsync``.

Fixed a bug in MRIStep where a segfault would occur when an MRI coupling table
is not explicitly set and an MRI integrator is nested inside another MRI
integrator.

**Deprecation Notices**
8 changes: 4 additions & 4 deletions doc/shared/sundials/Fortran.rst
Original file line number Diff line number Diff line change
Expand Up @@ -504,11 +504,11 @@ a C file pointer, SUNDIALS provides two utility functions for creating a
* ``r+`` to open a text file for reading/writing
* ``w`` to truncate a text file to zero length or create it for writing
* ``w+`` to open a text file for reading/writing or create it if it does
not exist
* ``a`` to open a text file for appending, see documentation of ``fopen`` for
your system/compiler
not exist
* ``a`` to open a text file for appending, see documentation of ``fopen``
for your system/compiler
* ``a+`` to open a text file for reading/appending, see documentation for
``fopen`` for your system/compiler
``fopen`` for your system/compiler

:param fp: The ``FILE*`` that will be open when the function returns.
This should be a `type(c_ptr)` in the Fortran.
Expand Down
3 changes: 2 additions & 1 deletion examples/arkode/F2003_serial/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@
# Example lists are tuples "name\;type" where the type is 'develop' for examples
# excluded from 'make test' in releases

set(FARKODE_examples "ark_analytic_f2003\;\;develop")
set(FARKODE_examples "ark_analytic_f2003\;\;develop"
"ark_kpr_nestedmri_f2003\;\;develop")

# Regression tests
set(FARKODE_tests "test_ark_butcher_f2003\;develop")
Expand Down
Loading