Skip to content
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

Closed
szhengac opened this issue Dec 16, 2020 · 3 comments
Closed

nvcc fatal unsupported gpu architecture 'compute_86' #607

szhengac opened this issue Dec 16, 2020 · 3 comments

Comments

@szhengac
Copy link
Contributor

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' in

args.append(f'-gencode=arch=compute_{num},code=sm_{num}')
. I think the current deepspeed installation may not handle cuda 11.0 well.

@sxjscience
Copy link
Contributor

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

if torch.utils.cpp_extension.CUDA_HOME is not None and installed_cuda_version(
)[0] >= 11:
compute_caps += ";8.0;8.6"

@YaoBeiji
Copy link

nvcc fatal : Unsupported gpu architecture 'compute_86',I have this issue too,but my CUDA version is 10.2

@loadams
Copy link
Contributor

loadams commented Aug 18, 2023

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.

@loadams loadams closed this as completed Aug 18, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants