Skip to content
This repository has been archived by the owner on Mar 21, 2024. It is now read-only.

Commit

Permalink
Update incorrect comments in test_block_radix_sort.
Browse files Browse the repository at this point in the history
Fixes #429.
  • Loading branch information
alliepiper committed Feb 7, 2022
1 parent 93f26ab commit 335055f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test_block_radix_sort.cu
Original file line number Diff line number Diff line change
Expand Up @@ -488,10 +488,10 @@ void Test()

Int2Type<(sizeof(typename BlockRadixSortT::TempStorage) <= 48 * 1024)> fits_smem_capacity;

// Sort-ascending, to-striped
// Sort-descending, to-striped
TestValid<BLOCK_THREADS, ITEMS_PER_THREAD, RADIX_BITS, MEMOIZE_OUTER_SCAN, INNER_SCAN_ALGORITHM, SMEM_CONFIG, true, false, Key, Value>(fits_smem_capacity);

// Sort-descending, to-blocked
// Sort-ascending, to-blocked
TestValid<BLOCK_THREADS, ITEMS_PER_THREAD, RADIX_BITS, MEMOIZE_OUTER_SCAN, INNER_SCAN_ALGORITHM, SMEM_CONFIG, false, true, Key, Value>(fits_smem_capacity);

// Not necessary
Expand Down

0 comments on commit 335055f

Please sign in to comment.