Skip to content

Commit

Permalink
Merge branch 'develop' into feature/cvode-resize-history
Browse files Browse the repository at this point in the history
  • Loading branch information
gardner48 committed Oct 20, 2023
2 parents 28505e3 + e800b15 commit 2729b6c
Show file tree
Hide file tree
Showing 30 changed files with 1,511 additions and 277 deletions.
25 changes: 19 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,29 @@

## Changes to SUNDIALS in release X.X.X

Fixed a bug in `ARKStepSetTableNum` wherein it did not recognize `ARKODE_ARK2_ERK_3_1_2` and
`ARKODE_ARK2_DIRK_3_1_2` as a valid additive Runge--Kutta Butcher table pair.
Fixed a regression introduced by the stop time bug fix in v6.6.1 where ARKODE,
CVODE, CVODES, IDA, and IDAS would return at the stop time rather than the
requested output time if the stop time was reached in the same step in which the
output time was passed.

Renamed some internal types in CVODES and IDAS to allow both packages to be built together in the same binary.
Fixed a bug in ARKODE where `ARKStepSetInterpolateStopTime` would return an
interpolated solution at the stop time in some cases when interpolation was
disabled.

Fixed a bug in `ARKStepSetTableNum` wherein it did not recognize
`ARKODE_ARK2_ERK_3_1_2` and `ARKODE_ARK2_DIRK_3_1_2` as a valid additive
Runge--Kutta Butcher table pair.

Renamed some internal types in CVODES and IDAS to allow both packages to be
built together in the same binary.

Improved computational complexity of `SUNMatScaleAddI_Sparse` from `O(M*N)` to
`O(NNZ)`.

Fixed scaling bug in `SUNMatScaleAddI_Sparse` for non-square matrices.

Fixed missing soversions in some `SUNLinearSolver` CMake targets.
Fixed missing soversions in some `SUNLinearSolver` and `SUNNonlinearSolver`
CMake targets.

## Changes to SUNDIALS in release 6.6.1

Expand All @@ -24,8 +36,9 @@ object.

Fixed a bug in ARKODE, CVODE, CVODES, IDA, and IDAS where the stop time may not
be cleared when using normal mode if the requested output time is the same as
the stop time. Additionally, with ARKODE, CVODE, and CVODES an unnecessary
interpolation of the solution at the stop time may occur in this case.
the stop time. Additionally, with ARKODE, CVODE, and CVODES this fix removes an
unnecessary interpolation of the solution at the stop time that could occur in
this case.

## Changes to SUNDIALS in release 6.6.0

Expand Down
22 changes: 16 additions & 6 deletions doc/arkode/guide/source/Introduction.rst
Original file line number Diff line number Diff line change
Expand Up @@ -133,16 +133,25 @@ Changes from previous versions
Changes in vX.X.X
-----------------

Fixed a regression introduced by the stop time bug fix in v6.6.1 where ARKODE
steppers would return at the stop time rather than the requested output time if
the stop time was reached in the same step in which the output time was passed.

Fixed a bug in ARKODE where :c:func:`ARKStepSetInterpolateStopTime` would return
an interpolated solution at the stop time in some cases when interpolation was
disabled.

Fixed a bug in :c:func:`ARKStepSetTableNum` wherein it did not recognize
`ARKODE_ARK2_ERK_3_1_2` and `ARKODE_ARK2_DIRK_3_1_2` as a valid additive
Runge--Kutta Butcher table pair.

Improved computational complexity of ``SUNMatScaleAddI_Sparse`` from ``O(M*N)`` to
``O(NNZ)``.
Improved computational complexity of ``SUNMatScaleAddI_Sparse`` from ``O(M*N)``
to ``O(NNZ)``.

Fixed scaling bug in ``SUNMatScaleAddI_Sparse`` for non-square matrices.

Fixed missing soversions in some ``SUNLinearSolver`` CMake targets.
Fixed missing soversions in some ``SUNLinearSolver`` and ``SUNNonlinearSolver``
CMake targets.

Changes in v5.6.1
-----------------
Expand All @@ -152,9 +161,10 @@ Updated the Tpetra NVector interface to support Trilinos 14.
Fixed a memory leak when destroying a CUDA, HIP, SYCL, or system SUNMemoryHelper
object.

Fixed a bug where the stop time may not be cleared and an unnecessary
interpolation may occur when using normal mode if the requested output time is
the same as the stop time.
Fixed a bug where the stop time may not be cleared when using normal mode if the
requested output time is the same as the stop time. Additionally, this fix
removes an unnecessary interpolation of the solution at the stop time that could
occur in this case.

Changes in v5.6.0
-----------------
Expand Down
18 changes: 12 additions & 6 deletions doc/cvode/guide/source/Introduction.rst
Original file line number Diff line number Diff line change
Expand Up @@ -114,12 +114,17 @@ Changes from previous versions
Changes in vX.X.X
-----------------

Improved computational complexity of ``SUNMatScaleAddI_Sparse`` from ``O(M*N)`` to
``O(NNZ)``.
Fixed a regression introduced by the stop time bug fix in v6.6.1 where CVODE
would return at the stop time rather than the requested output time if the stop
time was reached in the same step in which the output time was passed.

Improved computational complexity of ``SUNMatScaleAddI_Sparse`` from ``O(M*N)``
to ``O(NNZ)``.

Fixed scaling bug in ``SUNMatScaleAddI_Sparse`` for non-square matrices.

Fixed missing soversions in some ``SUNLinearSolver`` CMake targets.
Fixed missing soversions in some ``SUNLinearSolver`` and ``SUNNonlinearSolver``
CMake targets.

Changes in v6.6.1
-----------------
Expand All @@ -129,9 +134,10 @@ Updated the Tpetra NVector interface to support Trilinos 14.
Fixed a memory leak when destroying a CUDA, HIP, SYCL, or system SUNMemoryHelper
object.

Fixed a bug where the stop time may not be cleared and an unnecessary
interpolation may occur when using normal mode if the requested output time is
the same as the stop time.
Fixed a bug where the stop time may not be cleared when using normal mode if the
requested output time is the same as the stop time. Additionally, this fix
removes an unnecessary interpolation of the solution at the stop time that could
occur in this case.

Changes in v6.6.0
-----------------
Expand Down
21 changes: 14 additions & 7 deletions doc/cvodes/guide/source/Introduction.rst
Original file line number Diff line number Diff line change
Expand Up @@ -114,14 +114,20 @@ Changes from previous versions
Changes in vX.X.X
-----------------

Renamed some internal types in CVODES and IDAS to allow both packages to be built together in the same binary.
Fixed a regression introduced by the stop time bug fix in v6.6.1 where CVODES
would return at the stop time rather than the requested output time if the stop
time was reached in the same step in which the output time was passed.

Improved computational complexity of ``SUNMatScaleAddI_Sparse`` from ``O(M*N)`` to
``O(NNZ)``.
Renamed some internal types in CVODES and IDAS to allow both packages to be
built together in the same binary.

Improved computational complexity of ``SUNMatScaleAddI_Sparse`` from ``O(M*N)``
to ``O(NNZ)``.

Fixed scaling bug in ``SUNMatScaleAddI_Sparse`` for non-square matrices.

Fixed missing soversions in some ``SUNLinearSolver`` CMake targets.
Fixed missing soversions in some ``SUNLinearSolver`` and ``SUNNonlinearSolver``
CMake targets.

Changes in v6.6.1
-----------------
Expand All @@ -131,9 +137,10 @@ Updated the Tpetra NVector interface to support Trilinos 14.
Fixed a memory leak when destroying a CUDA, HIP, SYCL, or system SUNMemoryHelper
object.

Fixed a bug where the stop time may not be cleared and an unnecessary
interpolation may occur when using normal mode if the requested output time is
the same as the stop time.
Fixed a bug where the stop time may not be cleared when using normal mode if the
requested output time is the same as the stop time. Additionally, this fix
removes an unnecessary interpolation of the solution at the stop time that could
occur in this case.

Changes in v6.6.0
-----------------
Expand Down
11 changes: 8 additions & 3 deletions doc/ida/guide/source/Introduction.rst
Original file line number Diff line number Diff line change
Expand Up @@ -75,12 +75,17 @@ Changes from previous versions
Changes in vX.X.X
-----------------

Improved computational complexity of ``SUNMatScaleAddI_Sparse`` from ``O(M*N)`` to
``O(NNZ)``.
Fixed a regression introduced by the stop time bug fix in v6.6.1 where IDA would
return at the stop time rather than the requested output time if the stop time
was reached in the same step in which the output time was passed.

Improved computational complexity of ``SUNMatScaleAddI_Sparse`` from ``O(M*N)``
to ``O(NNZ)``.

Fixed scaling bug in ``SUNMatScaleAddI_Sparse`` for non-square matrices.

Fixed missing soversions in some ``SUNLinearSolver`` CMake targets.
Fixed missing soversions in some ``SUNLinearSolver`` and ``SUNNonlinearSolver``
CMake targets.

Changes in v6.6.1
-----------------
Expand Down
14 changes: 10 additions & 4 deletions doc/idas/guide/source/Introduction.rst
Original file line number Diff line number Diff line change
Expand Up @@ -89,14 +89,20 @@ Changes from previous versions
Changes in vX.X.X
-----------------

Renamed some internal types in CVODES and IDAS to allow both packages to be built together in the same binary.
Fixed a regression introduced by the stop time bug fix in v6.6.1 where IDAS
would return at the stop time rather than the requested output time if the stop
time was reached in the same step in which the output time was passed.

Improved computational complexity of ``SUNMatScaleAddI_Sparse`` from ``O(M*N)`` to
``O(NNZ)``.
Renamed some internal types in CVODES and IDAS to allow both packages to be
built together in the same binary.

Improved computational complexity of ``SUNMatScaleAddI_Sparse`` from ``O(M*N)``
to ``O(NNZ)``.

Fixed scaling bug in ``SUNMatScaleAddI_Sparse`` for non-square matrices.

Fixed missing soversions in some ``SUNLinearSolver`` CMake targets.
Fixed missing soversions in some ``SUNLinearSolver`` and ``SUNNonlinearSolver``
CMake targets.

Changes in v5.6.1
-----------------
Expand Down
3 changes: 2 additions & 1 deletion doc/kinsol/guide/source/Introduction.rst
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,8 @@ Improved computational complexity of ``SUNMatScaleAddI_Sparse`` from ``O(M*N)``

Fixed scaling bug in ``SUNMatScaleAddI_Sparse`` for non-square matrices.

Fixed missing soversions in some ``SUNLinearSolver`` CMake targets.
Fixed missing soversions in some ``SUNLinearSolver`` and ``SUNNonlinearSolver``
CMake targets.

Changes in v6.6.1
-----------------
Expand Down
23 changes: 1 addition & 22 deletions scripts/arkode
Original file line number Diff line number Diff line change
Expand Up @@ -387,25 +387,4 @@ $tar $tarfile $distrobase/examples/arkode/F2003_serial/test_ark_butcher_f2003.f9

echo " --- Add arkode unit tests to $tarfile"

$tar $tarfile $distrobase/test/unit_tests/arkode/CMakeLists.txt
$tar $tarfile $distrobase/test/unit_tests/arkode/C_serial/CMakeLists.txt
$tar $tarfile $distrobase/test/unit_tests/arkode/C_serial/ark_test_arkstepsetforcing.c
$tar $tarfile $distrobase/test/unit_tests/arkode/C_serial/ark_test_getuserdata.c
$tar $tarfile $distrobase/test/unit_tests/arkode/C_serial/ark_test_interp.c
$tar $tarfile $distrobase/test/unit_tests/arkode/C_serial/ark_test_reset.c
$tar $tarfile $distrobase/test/unit_tests/arkode/CXX_serial/CMakeLists.txt
$tar $tarfile $distrobase/test/unit_tests/arkode/CXX_serial/ark_test_analytic_sys_mri.cpp
$tar $tarfile $distrobase/test/unit_tests/arkode/CXX_serial/ark_test_analytic_sys_mri_0.out
$tar $tarfile $distrobase/test/unit_tests/arkode/CXX_serial/ark_test_analytic_sys_mri_1.out
$tar $tarfile $distrobase/test/unit_tests/arkode/CXX_serial/ark_test_butcher.cpp
$tar $tarfile $distrobase/test/unit_tests/arkode/CXX_serial/ark_test_butcher.out
$tar $tarfile $distrobase/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_mri.cpp
$tar $tarfile $distrobase/test/unit_tests/arkode/CXX_serial/ark_test_dahlquist_mri.out
$tar $tarfile $distrobase/test/unit_tests/arkode/CXX_serial/ark_test_getjac.cpp
$tar $tarfile $distrobase/test/unit_tests/arkode/CXX_serial/ark_test_getjac.out
$tar $tarfile $distrobase/test/unit_tests/arkode/CXX_serial/ark_test_getjac_mri.cpp
$tar $tarfile $distrobase/test/unit_tests/arkode/CXX_serial/ark_test_getjac_mri.out
$tar $tarfile $distrobase/test/unit_tests/arkode/CXX_parallel/CMakeLists.txt
$tar $tarfile $distrobase/test/unit_tests/arkode/CXX_parallel/ark_test_heat2D_mri.cpp
$tar $tarfile $distrobase/test/unit_tests/arkode/F2003_serial/CMakeLists.txt
$tar $tarfile $distrobase/test/unit_tests/arkode/F2003_serial/ark_test_table_f2003.f90
$tar $tarfile $distrobase/test/unit_tests/arkode
20 changes: 1 addition & 19 deletions scripts/cvode
Original file line number Diff line number Diff line change
Expand Up @@ -272,22 +272,4 @@ $tar $tarfile $distrobase/examples/cvode/CXX_sycl/cvAdvDiff_kry_sycl.out

echo " --- Add cvode unit tests to $tarfile"

$tar $tarfile $distrobase/test/unit_tests/cvode/CMakeLists.txt
$tar $tarfile $distrobase/test/unit_tests/cvode/C_serial/CMakeLists.txt
$tar $tarfile $distrobase/test/unit_tests/cvode/C_serial/cv_test_getuserdata.c
$tar $tarfile $distrobase/test/unit_tests/cvode/CXX_serial/CMakeLists.txt
$tar $tarfile $distrobase/test/unit_tests/cvode/CXX_serial/cv_test_getjac.cpp
$tar $tarfile $distrobase/test/unit_tests/cvode/CXX_serial/cv_test_getjac.out
$tar $tarfile $distrobase/test/unit_tests/cvode/CXX_serial/cv_test_kpr.cpp
$tar $tarfile $distrobase/test/unit_tests/cvode/CXX_serial/cv_test_kpr.hpp
$tar $tarfile $distrobase/test/unit_tests/cvode/CXX_serial/cv_test_kpr.out
$tar $tarfile $distrobase/test/unit_tests/cvode/CXX_serial/cv_test_kpr_--dgmax_jbad_1.0.out
$tar $tarfile $distrobase/test/unit_tests/cvode/CXX_serial/cv_test_kpr_--dgmax_lsetup_0.0.out
$tar $tarfile $distrobase/test/unit_tests/cvode/CXX_serial/cv_test_kpr_--eta_cf_0.5.out
$tar $tarfile $distrobase/test/unit_tests/cvode/CXX_serial/cv_test_kpr_--eta_max_ef_0.1_--small_nef_1.out
$tar $tarfile $distrobase/test/unit_tests/cvode/CXX_serial/cv_test_kpr_--eta_max_fs_2.out
$tar $tarfile $distrobase/test/unit_tests/cvode/CXX_serial/cv_test_kpr_--eta_min_ef_0.5.out
$tar $tarfile $distrobase/test/unit_tests/cvode/CXX_serial/cv_test_kpr_--eta_min_es_2_--small_nst_5.out
$tar $tarfile $distrobase/test/unit_tests/cvode/CXX_serial/cv_test_kpr_--eta_min_fx_1.0_--eta_max_fx_2.0.out
$tar $tarfile $distrobase/test/unit_tests/cvode/CXX_serial/cv_test_kpr_--eta_min_fx_1.0_--eta_min_0.5.out
$tar $tarfile $distrobase/test/unit_tests/cvode/CXX_serial/cv_test_kpr_--eta_min_gs_2.out
$tar $tarfile $distrobase/test/unit_tests/cvode
20 changes: 1 addition & 19 deletions scripts/cvodes
Original file line number Diff line number Diff line change
Expand Up @@ -190,22 +190,4 @@ $tar $tarfile $distrobase/examples/cvodes/F2003_serial/cvsAdvDiff_FSA_non_f2003_

echo " --- Add cvodes unit tests to $tarfile"

$tar $tarfile $distrobase/test/unit_tests/cvodes/CMakeLists.txt
$tar $tarfile $distrobase/test/unit_tests/cvodes/C_serial/CMakeLists.txt
$tar $tarfile $distrobase/test/unit_tests/cvodes/C_serial/cvs_test_getuserdata.c
$tar $tarfile $distrobase/test/unit_tests/cvodes/CXX_serial/CMakeLists.txt
$tar $tarfile $distrobase/test/unit_tests/cvodes/CXX_serial/cvs_test_getjac.cpp
$tar $tarfile $distrobase/test/unit_tests/cvodes/CXX_serial/cvs_test_getjac.out
$tar $tarfile $distrobase/test/unit_tests/cvodes/CXX_serial/cvs_test_kpr.cpp
$tar $tarfile $distrobase/test/unit_tests/cvodes/CXX_serial/cvs_test_kpr.hpp
$tar $tarfile $distrobase/test/unit_tests/cvodes/CXX_serial/cvs_test_kpr.out
$tar $tarfile $distrobase/test/unit_tests/cvodes/CXX_serial/cvs_test_kpr_--dgmax_jbad_1.0.out
$tar $tarfile $distrobase/test/unit_tests/cvodes/CXX_serial/cvs_test_kpr_--dgmax_lsetup_0.0.out
$tar $tarfile $distrobase/test/unit_tests/cvodes/CXX_serial/cvs_test_kpr_--eta_cf_0.5.out
$tar $tarfile $distrobase/test/unit_tests/cvodes/CXX_serial/cvs_test_kpr_--eta_max_ef_0.1_--small_nef_1.out
$tar $tarfile $distrobase/test/unit_tests/cvodes/CXX_serial/cvs_test_kpr_--eta_max_fs_2.out
$tar $tarfile $distrobase/test/unit_tests/cvodes/CXX_serial/cvs_test_kpr_--eta_min_ef_0.5.out
$tar $tarfile $distrobase/test/unit_tests/cvodes/CXX_serial/cvs_test_kpr_--eta_min_es_2_--small_nst_5.out
$tar $tarfile $distrobase/test/unit_tests/cvodes/CXX_serial/cvs_test_kpr_--eta_min_fx_1.0_--eta_max_fx_2.0.out
$tar $tarfile $distrobase/test/unit_tests/cvodes/CXX_serial/cvs_test_kpr_--eta_min_fx_1.0_--eta_min_0.5.out
$tar $tarfile $distrobase/test/unit_tests/cvodes/CXX_serial/cvs_test_kpr_--eta_min_gs_2.out
$tar $tarfile $distrobase/test/unit_tests/cvodes
17 changes: 1 addition & 16 deletions scripts/ida
Original file line number Diff line number Diff line change
Expand Up @@ -162,19 +162,4 @@ $tar $tarfile $distrobase/examples/ida/F2003_serial/idaRoberts_dns_f2003.out

echo " --- Add ida unit tests to $tarfile"

$tar $tarfile $distrobase/test/unit_tests/ida/CMakeLists.txt
$tar $tarfile $distrobase/test/unit_tests/ida/C_serial/CMakeLists.txt
$tar $tarfile $distrobase/test/unit_tests/ida/C_serial/ida_test_getuserdata.c
$tar $tarfile $distrobase/test/unit_tests/ida/CXX_serial/CMakeLists.txt
$tar $tarfile $distrobase/test/unit_tests/ida/CXX_serial/ida_test_getjac.cpp
$tar $tarfile $distrobase/test/unit_tests/ida/CXX_serial/ida_test_getjac.out
$tar $tarfile $distrobase/test/unit_tests/ida/CXX_serial/ida_test_kpr.cpp
$tar $tarfile $distrobase/test/unit_tests/ida/CXX_serial/ida_test_kpr.hpp
$tar $tarfile $distrobase/test/unit_tests/ida/CXX_serial/ida_test_kpr.out
$tar $tarfile $distrobase/test/unit_tests/ida/CXX_serial/ida_test_kpr_--dcj_0.9.out
$tar $tarfile $distrobase/test/unit_tests/ida/CXX_serial/ida_test_kpr_--eta_cf_0.5.out
$tar $tarfile $distrobase/test/unit_tests/ida/CXX_serial/ida_test_kpr_--eta_max_fs_2.out
$tar $tarfile $distrobase/test/unit_tests/ida/CXX_serial/ida_test_kpr_--eta_min_2.out
$tar $tarfile $distrobase/test/unit_tests/ida/CXX_serial/ida_test_kpr_--eta_min_ef_0.5.out
$tar $tarfile $distrobase/test/unit_tests/ida/CXX_serial/ida_test_kpr_--eta_min_fx_1.0_--eta_max_fx_2.0.out
$tar $tarfile $distrobase/test/unit_tests/ida/CXX_serial/ida_test_kpr_--eta_min_fx_1.0_--eta_min_0.5.out
$tar $tarfile $distrobase/test/unit_tests/ida
16 changes: 1 addition & 15 deletions scripts/idas
Original file line number Diff line number Diff line change
Expand Up @@ -151,18 +151,4 @@ $tar $tarfile $distrobase/examples/idas/F2003_serial/idasHeat2D_kry_f2003.out

echo " --- Add idas unit tests to $tarfile"

$tar $tarfile $distrobase/test/unit_tests/idas/CMakeLists.txt
$tar $tarfile $distrobase/test/unit_tests/idas/C_serial/CMakeLists.txt
$tar $tarfile $distrobase/test/unit_tests/idas/C_serial/idas_test_getuserdata.c
$tar $tarfile $distrobase/test/unit_tests/idas/CXX_serial/CMakeLists.txt
$tar $tarfile $distrobase/test/unit_tests/idas/CXX_serial/idas_test_getjac.cpp
$tar $tarfile $distrobase/test/unit_tests/idas/CXX_serial/idas_test_getjac.out
$tar $tarfile $distrobase/test/unit_tests/idas/CXX_serial/idas_test_kpr.cpp
$tar $tarfile $distrobase/test/unit_tests/idas/CXX_serial/idas_test_kpr.hpp
$tar $tarfile $distrobase/test/unit_tests/idas/CXX_serial/idas_test_kpr.out
$tar $tarfile $distrobase/test/unit_tests/idas/CXX_serial/idas_test_kpr_--dcj_0.9.out
$tar $tarfile $distrobase/test/unit_tests/idas/CXX_serial/idas_test_kpr_--eta_cf_0.5.out
$tar $tarfile $distrobase/test/unit_tests/idas/CXX_serial/idas_test_kpr_--eta_min_2.out
$tar $tarfile $distrobase/test/unit_tests/idas/CXX_serial/idas_test_kpr_--eta_min_ef_0.5.out
$tar $tarfile $distrobase/test/unit_tests/idas/CXX_serial/idas_test_kpr_--eta_min_fx_1.0_--eta_max_fx_2.0.out
$tar $tarfile $distrobase/test/unit_tests/idas/CXX_serial/idas_test_kpr_--eta_min_fx_1.0_--eta_min_0.5.out
$tar $tarfile $distrobase/test/unit_tests/idas
7 changes: 1 addition & 6 deletions scripts/kinsol
Original file line number Diff line number Diff line change
Expand Up @@ -145,9 +145,4 @@ $tar $tarfile $distrobase/examples/kinsol/F2003_serial/kinLaplace_picard_kry_f20

echo " --- Add kinsol unit tests to $tarfile"

$tar $tarfile $distrobase/test/unit_tests/kinsol/CMakeLists.txt
$tar $tarfile $distrobase/test/unit_tests/kinsol/C_serial/CMakeLists.txt
$tar $tarfile $distrobase/test/unit_tests/kinsol/C_serial/kin_test_getuserdata.c
$tar $tarfile $distrobase/test/unit_tests/kinsol/CXX_serial/CMakeLists.txt
$tar $tarfile $distrobase/test/unit_tests/kinsol/CXX_serial/kin_test_getjac.cpp
$tar $tarfile $distrobase/test/unit_tests/kinsol/CXX_serial/kin_test_getjac.out
$tar $tarfile $distrobase/test/unit_tests/kinsol
13 changes: 1 addition & 12 deletions scripts/shared
Original file line number Diff line number Diff line change
Expand Up @@ -835,15 +835,4 @@ echo " --- Add unit tests files to $tarfile"

$tar $tarfile $distrobase/test/unit_tests/CMakeLists.txt
$tar $tarfile $distrobase/test/unit_tests/reductions
$tar $tarfile $distrobase/test/unit_tests/reductions/CMakeLists.txt
$tar $tarfile $distrobase/test/unit_tests/reductions/test_reduction_operators.cpp
$tar $tarfile $distrobase/test/unit_tests/sunmemory/CMakeLists.txt
$tar $tarfile $distrobase/test/unit_tests/sunmemory/sys
$tar $tarfile $distrobase/test/unit_tests/sunmemory/sys/CMakeLists.txt
$tar $tarfile $distrobase/test/unit_tests/sunmemory/sys/test_sunmemory_sys.cpp
$tar $tarfile $distrobase/test/unit_tests/sunmemory/cuda/CMakeLists.txt
$tar $tarfile $distrobase/test/unit_tests/sunmemory/cuda/test_sunmemory_cuda.cu
$tar $tarfile $distrobase/test/unit_tests/sunmemory/hip/CMakeLists.txt
$tar $tarfile $distrobase/test/unit_tests/sunmemory/hip/test_sunmemory_hip.cpp
$tar $tarfile $distrobase/test/unit_tests/sunmemory/sycl/CMakeLists.txt
$tar $tarfile $distrobase/test/unit_tests/sunmemory/sycl/test_sunmemory_sycl.cpp
$tar $tarfile $distrobase/test/unit_tests/sunmemory
Loading

0 comments on commit 2729b6c

Please sign in to comment.