Skip to content

Commit a5830ad

Browse files
committed
asdf
1 parent 07aa761 commit a5830ad

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sparse/src/KokkosSparse_SortCrs.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -198,8 +198,8 @@ void sort_bsr_matrix(const execution_space& exec, Ordinal blockSize, const rowma
198198
vectorLength *= 2;
199199
}
200200
if (vectorLength > TeamPol ::vector_length_max()) vectorLength = TeamPol ::vector_length_max();
201-
Impl::MatrixSortThreadFunctor<TeamPol, Ordinal, rowmap_t, entries_t, decltype(permutation)> funct(
202-
numRows, rowmap, entries, permutation);
201+
Impl::MatrixSortThreadFunctor<TeamPol, Ordinal, rowmap_t, decltype(keys), decltype(permutation)> funct(
202+
numRows, rowmap, keys, permutation);
203203
Ordinal teamSize = TeamPol(exec, 1, 1, vectorLength).team_size_recommended(funct, Kokkos::ParallelForTag());
204204
Kokkos::parallel_for("sort_bulk_keys_by_row[GPU,bitonic]",
205205
TeamPol(exec, (numRows + teamSize - 1) / teamSize, teamSize, vectorLength), funct);

0 commit comments

Comments
 (0)