This repository has been archived by the owner on Mar 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 758
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1c4f25d
commit 583cb44
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule cub
updated
19 files
+2 −0 | .gitignore | |
+8 −2 | CHANGELOG.md | |
+4 −0 | cmake/CubBuildCompilerTargets.cmake | |
+30 −37 | cub/agent/agent_radix_sort_downsweep.cuh | |
+241 −0 | cub/agent/agent_radix_sort_histogram.cuh | |
+669 −0 | cub/agent/agent_radix_sort_onesweep.cuh | |
+1 −1 | cub/agent/agent_reduce_by_key.cuh | |
+1 −1 | cub/agent/agent_segment_fixup.cuh | |
+435 −5 | cub/block/block_radix_rank.cuh | |
+88 −0 | cub/block/radix_rank_sort_operations.cuh | |
+375 −11 | cub/device/dispatch/dispatch_radix_sort.cuh | |
+4 −3 | cub/util_arch.cuh | |
+2 −1 | cub/util_device.cuh | |
+3 −0 | cub/util_namespace.cuh | |
+23 −17 | cub/util_ptx.cuh | |
+3 −3 | cub/util_type.cuh | |
+4 −5 | test/test_device_radix_sort.cu | |
+1 −1 | test/test_iterator.cu | |
+26 −27 | test/test_util.h |