-
Notifications
You must be signed in to change notification settings - Fork 4.2k
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
nvcc fatal unsupported gpu architecture 'compute_86' #607
Comments
I'm also having this issue. The root cause should be that compute_86 is not supported in CUDA 11.0 and will only be available in CUDA>=11.1. Thus, we should be able to solve it by revising the logic to include the special treatment of CUDA 11.0 DeepSpeed/op_builder/builder.py Lines 37 to 39 in 44bd538
|
nvcc fatal : Unsupported gpu architecture 'compute_86',I have this issue too,but my CUDA version is 10.2 |
Closing this issue since this was a case where the CUDA version had to be updated to get support for newer devices, as is often the case. |
When I install deepspeed from source, it gives me
nvcc fatal unsupported gpu architecture 'compute_86'
. My cuda version is 11.0. I can alleviate the issue by skipping 'compute_86' inDeepSpeed/op_builder/builder.py
Line 265 in 6380ee3
The text was updated successfully, but these errors were encountered: