From 29295fc9be42feb51e24885e9e8d1af99f03e1a9 Mon Sep 17 00:00:00 2001 From: Richard Berger Date: Tue, 27 Jan 2026 23:10:52 -0700 Subject: [PATCH 1/3] test --- singularity-eos/closure/mixed_cell_models.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/singularity-eos/closure/mixed_cell_models.hpp b/singularity-eos/closure/mixed_cell_models.hpp index b4d6b6d0c83..4837636d211 100644 --- a/singularity-eos/closure/mixed_cell_models.hpp +++ b/singularity-eos/closure/mixed_cell_models.hpp @@ -29,7 +29,7 @@ #ifdef SINGULARITY_USE_KOKKOSKERNELS #include #include -#include +#include #else #include #endif // SINGULARITY_USE_KOKKOSKERNELS @@ -170,12 +170,12 @@ bool solve_Ax_b_wscr(const std::size_t n, Real *a, Real *b, Real *scr) { using ApQ_alg = KokkosBatched::Algo::ApplyQ::Unblocked; using UP = KokkosBatched::Uplo::Upper; using NonU = KokkosBatched::Diag::NonUnit; - using Tr_alg = KokkosBatched::Algo::Trsv::Unblocked; + using Tr_alg = KokkosBatched::Algo::Trsm::Unblocked; // aliases for solver structs ('invoke' member of the struct is the // actual function call) using QR_factor = KokkosBatched::SerialQR; using ApplyQ_transpose = KokkosBatched::SerialApplyQ; - using InvertR = KokkosBatched::SerialTrsv; + using InvertR = KokkosBatched::SerialTrsm; // view of matrix Kokkos::View A(a, n, n); // view of RHS From 15bd3fd77def741c6a2320539346609c0d1c63ba Mon Sep 17 00:00:00 2001 From: Jonah Miller Date: Fri, 30 Jan 2026 16:48:29 -0500 Subject: [PATCH 2/3] Changelog --- CHANGELOG.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 477720489a9..53c2eb454b0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,7 +10,8 @@ ### Changed (changing behavior/API/variables/...) - [[PR601]](https://github.com/lanl/singularity-eos/pull/601) Make Serialize() return a smart pointer -### Infrastructure (changes irrelevant to downstream codes) +### Infrastructure (changes irrelevant to downstream codes +)- [[PR604]](https://github.com/lanl/singularity-eos/pull/604) Update kokkos kernels linalg call after kokkos kernels became more strict ### Removed (removing behavior/API/varaibles/...) From 7baf22ee7f34f8332f4e3e8aed8b43e4bf0a300c Mon Sep 17 00:00:00 2001 From: Jonah Miller Date: Fri, 30 Jan 2026 18:45:43 -0500 Subject: [PATCH 3/3] Update CHANGELOG.md Co-authored-by: Adam M. Dempsey --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 53c2eb454b0..63372d97b07 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,8 +10,8 @@ ### Changed (changing behavior/API/variables/...) - [[PR601]](https://github.com/lanl/singularity-eos/pull/601) Make Serialize() return a smart pointer -### Infrastructure (changes irrelevant to downstream codes -)- [[PR604]](https://github.com/lanl/singularity-eos/pull/604) Update kokkos kernels linalg call after kokkos kernels became more strict +### Infrastructure (changes irrelevant to downstream codes) +- [[PR604]](https://github.com/lanl/singularity-eos/pull/604) Update kokkos kernels linalg call after kokkos kernels became more strict ### Removed (removing behavior/API/varaibles/...)