Hi.
I’m trying to install torch version 2.1.0 but with cuda 11.7.
I tried this installation: python3.9 -m pip install --no-cache-dir torch --index-url https://download.pytorch.org/whl/cu117
But strangely, it installs torch 2.1.0+cu121.
On my Pod there is the installation of nvidia 515.65.01+ cudnn 8.5.0.96, with cuda 11.7, and by installing torch 2.1.0+cu121, torch is no longer able to use the GPU.
Trying to install only torch==2.0.1 instead (python3.9 -m pip install torch==2.0.1), torch works.
Is Torch version 2.1.0 only compatible with Cuda 12.1? Is there a way to use it with cuda 11.7?
Thank you