From 5663b8f120ec073ce3ebdaafe19eb7afef07c21a Mon Sep 17 00:00:00 2001 From: Luc Berger-Vergiat Date: Mon, 28 Oct 2024 11:21:12 -0600 Subject: [PATCH] Applying clang-format Signed-off-by: Luc Berger-Vergiat --- sparse/src/KokkosSparse_IOUtils.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sparse/src/KokkosSparse_IOUtils.hpp b/sparse/src/KokkosSparse_IOUtils.hpp index fb5d746a1a..31873be82e 100644 --- a/sparse/src/KokkosSparse_IOUtils.hpp +++ b/sparse/src/KokkosSparse_IOUtils.hpp @@ -73,7 +73,8 @@ void kk_sparseMatrix_generate(OrdinalType nrows, OrdinalType ncols, SizeType &nn } // Sample each value from uniform (-50, 50) for real types, or (-50 - 50i, 50 // + 50i) for complex types. - Kokkos::View valuesView(values, nnz * static_cast::size_type>(block_elem_count)); + Kokkos::View valuesView( + values, nnz * static_cast::size_type>(block_elem_count)); ScalarType randStart, randEnd; KokkosKernels::Impl::getRandomBounds(50.0, randStart, randEnd); Kokkos::Random_XorShift64_Pool pool(13718);