Skip to content

Commit

Permalink
Update cub/README.md
Browse files Browse the repository at this point in the history
Co-authored-by: Georgii Evtushenko <[email protected]>
  • Loading branch information
miscco and gevtushenko authored May 7, 2024
1 parent b2a1793 commit f6f852f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cub/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ __global__ void BlockSortKernel(int *d_in, int *d_out)
// Specialize BlockRadixSort, BlockLoad, and BlockStore for 128 threads
// owning 16 integer items each
typedef BlockRadixSort<int, 128, 16> BlockRadixSort;
typedef BlockLoad<int, 128, 16, cub::BLOCK_LOAD_TRANSPOSE> BlockLoad;
typedef BlockStore<int, 128, 16, cub::BLOCK_STORE_TRANSPOSE> BlockStore;
typedef BlockLoad<int, 128, 16, BLOCK_LOAD_TRANSPOSE> BlockLoad;
typedef BlockStore<int, 128, 16, BLOCK_STORE_TRANSPOSE> BlockStore;

// Allocate shared memory
__shared__ union {
Expand Down

0 comments on commit f6f852f

Please sign in to comment.