From a5830adc8c626351e61519e84ef4842aa17597de Mon Sep 17 00:00:00 2001 From: Brian Kelley Date: Tue, 6 Aug 2024 15:40:47 -0600 Subject: [PATCH] asdf --- sparse/src/KokkosSparse_SortCrs.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sparse/src/KokkosSparse_SortCrs.hpp b/sparse/src/KokkosSparse_SortCrs.hpp index 177709bbaf..847048e5a9 100644 --- a/sparse/src/KokkosSparse_SortCrs.hpp +++ b/sparse/src/KokkosSparse_SortCrs.hpp @@ -198,8 +198,8 @@ void sort_bsr_matrix(const execution_space& exec, Ordinal blockSize, const rowma vectorLength *= 2; } if (vectorLength > TeamPol ::vector_length_max()) vectorLength = TeamPol ::vector_length_max(); - Impl::MatrixSortThreadFunctor funct( - numRows, rowmap, entries, permutation); + Impl::MatrixSortThreadFunctor funct( + numRows, rowmap, keys, permutation); Ordinal teamSize = TeamPol(exec, 1, 1, vectorLength).team_size_recommended(funct, Kokkos::ParallelForTag()); Kokkos::parallel_for("sort_bulk_keys_by_row[GPU,bitonic]", TeamPol(exec, (numRows + teamSize - 1) / teamSize, teamSize, vectorLength), funct);