I have a Nvidia RTX 3090 ti 24GB with this drivers
CUDA Version: 11.4
Driver Version: 470.74
18.04.1-Ubuntu SMP
Cuda compilation tools, release 9.1, V9.1.85
I've looked for this card architecture and it is Ampere so the version of library are compute_86 or sm_86(if I am not wrong). But while compiling with nvcc it gives me back
nvcc fatal : Unsupported gpu architecture 'compute_86'
I've runned nvcc --help and I've found something strange, it returned me that for gpu-code and gpu-architecture
Allowed values for this option: 'compute_30','compute_32','compute_35', 'compute_37','compute_50','compute_52','compute_53','compute_60','compute_61', 'compute_62','compute_70','compute_72','sm_30','sm_32','sm_35','sm_37','sm_50', 'sm_52','sm_53','sm_60','sm_61','sm_62','sm_70','sm_72'.
So I'm missing any driver version or some library that has to be donwloaded or I can't compile with my GPU?
nvcc -V
to know for sure. Have you installed the cuda toolkit (including nvcc) and the nvidia driver separately? – Provincenvidia-cuda-toolkit/bionic,now 9.1.85-3ubuntu1 amd64 [installed] NVIDIA CUDA development toolkit
on another pc I have thatnvidia-cuda-toolkit/focal 10.1.243-3 amd64 NVIDIA CUDA development toolkit nvidia-cuda-toolkit-gcc/focal 10.1.243-3 amd64 NVIDIA CUDA development toolkit (GCC compatibility)
How can i force to update to newer version? Is it possible with Ubuntu 18.04? Thanks – Accelerometer