There are loads of questions on here about this & I have read those that I can find. Still pytorch
ignores my GPU.
I have a Win10 64x machine with a NVIDIA Maxwell GeForce GTX 960 with a compute ability of 5.2 so well within CUDA 11.x territory. I updated my drivers prior to pytorch
installation.
I went over to the Pytorch - get started page selected the appropriate combination & copied the conda
command for that set up. In my case this was,
conda install pytorch torchvision torchaudio cudatoolkit=11.6 -c pytorch -c conda-forge
I go to my conda
command terminal & open up my environment that I use for things like OpenCV and enter the command. Everything installs, no errors.
I then check the installation by opening Python & entering the following,
>>>import torch
>>>print(torch.__version__)
1.12.1
>>>print(torch.cuda.is_available())
False
So what am I missing here?