Skip to content
Snippets Groups Projects
Commit 5fef6a7f authored by Pietro Incardona's avatar Pietro Incardona
Browse files

Fixing for cuda 10

parent 701457b1
No related branches found
No related tags found
No related merge requests found
Pipeline #2944 failed
......@@ -15,8 +15,14 @@
constexpr int default_kernel_wg_threads_ = 1024;
#include "cub/util_type.cuh"
#include "cub/block/block_scan.cuh"
#if CUDART_VERSION >= 11000
#include "cub/util_type.cuh"
#include "cub/block/block_scan.cuh"
#else
#include "cub_old/util_type.cuh"
#include "cub_old/block/block_scan.cuh"
#endif
#if defined(SE_CLASS1) || defined(CUDA_CHECK_LAUNCH)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment