I am running my code which uses torch but I am getting this error
“NVIDIA GeForce RTX 3090 Ti with CUDA capability sm_86 is not compatible with the current PyTorch installation. The current PyTorch install supports CUDA capabilities sm_37 sm_50 sm_60 sm_70”
I have CUDA version 12.2 (checked using nvidia-smi)
nvcc -V :
NVIDIA (R) Cuda compiler driver
Copyright (c) 2005-2021 NVIDIA Corporation
Built on Thu_Nov_18_09:45:30_PST_2021
Cuda compilation tools, release 11.5, V11.5.119
Build cuda_11.5.r11.5/compiler.30672275_0
torch version : ‘1.10.1+cu102’. (using torch.version)
I want to use the same torch version, is there a way to resolve this issue??
But I want to use same version of Pytorch, because if I change my Pytorch version then I have to change my code at multiple locations and I want to avoid that. Is there any other fix for this??