Skip to content

Commit

Permalink
Testing NVIDIA/cub#359
Browse files Browse the repository at this point in the history
  • Loading branch information
gevtushenko committed Dec 29, 2022
1 parent fb758b8 commit 3acdcea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dependencies/cub
Submodule cub updated 44 files
+1 −1 .clang-format
+1 −0 .gitignore
+1 −0 CMakeLists.txt
+1 −0 README.md
+1,108 −0 cmake/CPM.cmake
+7 −0 cmake/CubBuildCompilerTargets.cmake
+1 −1 cmake/CubCudaConfig.cmake
+1,099 −0 cub/agent/agent_batch_memcpy.cuh
+19 −0 cub/agent/single_pass_scan_operators.cuh
+8 −8 cub/cub.cuh
+9 −0 cub/detail/detect_cuda_runtime.cuh
+13 −5 cub/detail/device_synchronize.cuh
+170 −0 cub/device/device_memcpy.cuh
+712 −0 cub/device/dispatch/dispatch_batch_memcpy.cuh
+34 −13 cub/util_device.cuh
+255 −0 docs/test_overview.md
+125 −18 test/CMakeLists.txt
+163 −0 test/c2h/custom_type.cuh
+384 −0 test/c2h/generators.cu
+102 −0 test/c2h/generators.cuh
+3 −0 test/catch2_runner.cu
+425 −0 test/catch2_test_block_adjacent_difference.cu
+213 −0 test/catch2_test_block_histogram.cu
+326 −0 test/catch2_test_block_load.cu
+520 −0 test/catch2_test_block_merge_sort.cu
+823 −0 test/catch2_test_block_radix_sort.cu
+362 −0 test/catch2_test_block_reduce.cu
+224 −208 test/catch2_test_block_run_length_decode.cu
+536 −0 test/catch2_test_block_scan.cu
+427 −0 test/catch2_test_block_shuffle.cu
+327 −0 test/catch2_test_block_store.cu
+195 −0 test/catch2_test_helper.h
+0 −719 test/test_block_adjacent_difference.cu
+0 −325 test/test_block_histogram.cu
+0 −535 test/test_block_load_store.cu
+0 −443 test/test_block_merge_sort.cu
+0 −641 test/test_block_radix_sort.cu
+0 −767 test/test_block_reduce.cu
+0 −888 test/test_block_scan.cu
+0 −396 test/test_block_shuffle.cu
+604 −0 test/test_device_batch_memcpy.cu
+1 −1 test/test_device_merge_sort.cu
+23 −258 test/test_util.h
+320 −0 test/test_util_vec.h

0 comments on commit 3acdcea

Please sign in to comment.