Skip to content

Commit

Permalink
Merge pull request #1441 from ndellingwood/issue-1440
Browse files Browse the repository at this point in the history
Add template params to forwarding calls in deprecated KokkosKernels::…
  • Loading branch information
ndellingwood authored Jun 13, 2022
2 parents 1369cdd + 77bb9c3 commit 52b6d7f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/sparse/KokkosSparse_SortCrs.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -637,7 +637,8 @@ template <typename execution_space, typename rowmap_t, typename entries_t,
[[deprecated]] void sort_crs_matrix(const rowmap_t& rowmap,
const entries_t& entries,
const values_t& values) {
KokkosSparse::sort_crs_matrix(rowmap, entries, values);
KokkosSparse::sort_crs_matrix<execution_space, rowmap_t, entries_t>(
rowmap, entries, values);
}

template <typename crsMat_t>
Expand All @@ -648,7 +649,8 @@ template <typename crsMat_t>
template <typename execution_space, typename rowmap_t, typename entries_t>
[[deprecated]] void sort_crs_graph(const rowmap_t& rowmap,
const entries_t& entries) {
KokkosSparse::sort_crs_graph(rowmap, entries);
KokkosSparse::sort_crs_graph<execution_space, rowmap_t, entries_t>(rowmap,
entries);
}

template <typename crsGraph_t>
Expand Down

0 comments on commit 52b6d7f

Please sign in to comment.