Skip to content

Commit

Permalink
Correct style issues found by CI
Browse files Browse the repository at this point in the history
  • Loading branch information
robertmaynard committed Oct 9, 2024
1 parent 137f182 commit 6368afd
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions cpp/include/raft/matrix/detail/columnWiseSort.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -72,11 +72,7 @@ RAFT_KERNEL devOffsetKernel(T* in, T value, int n_times)
}

// block level radix sort - can only sort as much data we can fit within shared memory
template <
typename InType,
typename OutType,
int BLOCK_SIZE,
int ITEMS_PER_THREAD>
template <typename InType, typename OutType, int BLOCK_SIZE, int ITEMS_PER_THREAD>
RAFT_KERNEL __launch_bounds__(1024, 1) devKeyValSortColumnPerRow(const InType* inputKeys,
InType* outputKeys,
OutType* inputVals,
Expand Down

0 comments on commit 6368afd

Please sign in to comment.