Skip to content

Commit

Permalink
Delete unused typedef
Browse files Browse the repository at this point in the history
  • Loading branch information
brian-kelley committed Aug 6, 2024
1 parent dc2929b commit 07aa761
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions sparse/impl/KokkosSparse_sort_crs_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -256,9 +256,8 @@ Kokkos::View<uint64_t*, ExecSpace> generateBulkCrsKeys(const ExecSpace& exec, co
template <typename ExecSpace, typename Rowmap, typename Entries>
Kokkos::View<typename Rowmap::non_const_value_type*, ExecSpace> computeEntryPermutation(
const ExecSpace& exec, const Rowmap& rowmap, const Entries& entries, typename Entries::non_const_value_type ncols) {
using Offset = typename Rowmap::non_const_value_type;
using Ordinal = typename Entries::non_const_value_type;
auto keys = generateBulkCrsKeys(exec, rowmap, entries, ncols);
using Offset = typename Rowmap::non_const_value_type;
auto keys = generateBulkCrsKeys(exec, rowmap, entries, ncols);
Kokkos::View<Offset*, ExecSpace> permutation(Kokkos::view_alloc(Kokkos::WithoutInitializing, "permutation"),
entries.extent(0));
// This initializes permutation as the identity
Expand Down

0 comments on commit 07aa761

Please sign in to comment.