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

Commit

Permalink
Bump CUB.
Browse files Browse the repository at this point in the history
  • Loading branch information
gevtushenko committed Oct 22, 2021
1 parent 0dc7178 commit 6192d9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dependencies/cub
Submodule cub updated 45 files
+286 −0 cub/agent/agent_segmented_radix_sort.cuh
+327 −0 cub/agent/agent_sub_warp_merge_sort.cuh
+614 −0 cub/agent/agent_three_way_partition.cuh
+63 −182 cub/block/block_exchange.cuh
+18 −20 cub/block/block_load.cuh
+466 −247 cub/block/block_merge_sort.cuh
+4 −16 cub/block/block_scan.cuh
+6 −5 cub/block/block_store.cuh
+5 −0 cub/cub.cuh
+90 −0 cub/detail/device_double_buffer.cuh
+350 −0 cub/detail/temporary_storage.cuh
+469 −131 cub/device/device_partition.cuh
+8 −8 cub/device/device_segmented_radix_sort.cuh
+2,569 −0 cub/device/device_segmented_sort.cuh
+33 −29 cub/device/dispatch/dispatch_merge_sort.cuh
+1,570 −0 cub/device/dispatch/dispatch_segmented_sort.cuh
+523 −0 cub/device/dispatch/dispatch_three_way_partition.cuh
+105 −0 cub/thread/thread_sort.cuh
+0 −2 cub/util_device.cuh
+32 −0 cub/util_ptx.cuh
+1 −0 cub/util_type.cuh
+6 −6 cub/warp/specializations/warp_reduce_shfl.cuh
+6 −12 cub/warp/specializations/warp_reduce_smem.cuh
+5 −8 cub/warp/specializations/warp_scan_shfl.cuh
+4 −7 cub/warp/specializations/warp_scan_smem.cuh
+473 −0 cub/warp/warp_exchange.cuh
+691 −0 cub/warp/warp_load.cuh
+172 −0 cub/warp/warp_merge_sort.cuh
+537 −0 cub/warp/warp_store.cuh
+3 −3 test/bfloat16.h
+3 −3 test/half.h
+0 −54 test/test_block_radix_sort.h
+61 −0 test/test_block_radix_sort_160.cu
+72 −0 test/test_block_radix_sort_32.cu
+61 −0 test/test_block_radix_sort_64.cu
+1,664 −0 test/test_device_segmented_sort.cu
+607 −0 test/test_device_three_way_partition.cu
+219 −0 test/test_temporary_storage_layout.cu
+148 −0 test/test_thread_sort.cu
+28 −0 test/test_util.h
+419 −0 test/test_warp_exchange.cu
+368 −0 test/test_warp_load.cu
+145 −0 test/test_warp_mask.cu
+635 −0 test/test_warp_merge_sort.cu
+376 −0 test/test_warp_store.cu

0 comments on commit 6192d9a

Please sign in to comment.