-
Notifications
You must be signed in to change notification settings - Fork 200
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[BUG] cooperative_groups/scan.h not in cuda11.X #416
Comments
use cub ? |
Hi @MichoChan , can you elaborate the CUDA version at which the header file is missing? If you use NGC container, e.g., /usr/local/cuda/include/cooperative_groups# ls -l
total 16
drwxr-xr-x 2 root root 4096 Dec 14 2022 details
-rw-r--r-- 1 root root 2960 Sep 21 2022 memcpy_async.h
-rw-r--r-- 1 root root 2949 Sep 21 2022 reduce.h
-rw-r--r-- 1 root root 2940 Sep 21 2022 scan.h
/usr/local/cuda/include/cooperative_groups# nvcc -V
nvcc: NVIDIA (R) Cuda compiler driver
Copyright (c) 2005-2022 NVIDIA Corporation
Built on Wed_Sep_21_10:33:58_PDT_2022
Cuda compilation tools, release 11.8, V11.8.89
Build cuda_11.8.r11.8/compiler.31833905_0 |
cuda 11.2 in my env |
Hi @MichoChan , if you have to use cuda 11.2, it is good for you to leverage cub or thrust. /usr/local/cuda/include# find -name "*scan*h"
./thrust/scan.h
...
./cub/agent/agent_scan.cuh
...
/usr/local/cuda/include# nvcc -V
nvcc: NVIDIA (R) Cuda compiler driver
Copyright (c) 2005-2020 NVIDIA Corporation
Built on Mon_Nov_30_19:08:53_PST_2020
Cuda compilation tools, release 11.2, V11.2.67
Build cuda_11.2.r11.2/compiler.29373293_0 |
thanks so mcuh |
how to fix it?
The text was updated successfully, but these errors were encountered: