Hie, I built a simple CNN architecture when I try to run it, I get the error RuntimeError: GET was unable to find an engine to execute this computation
Then I tried to find cudnn version using torch.backends.cudnn.version() which throwed me another error RuntimeError: cuDNN version incompatibility: PyTorch was compiled against (8, 5, 0) but found runtime version (8, 1, 0). PyTorch already comes bundled with cuDNN. One option to resolving this error is to ensure PyTorch can find the bundled cuDNN.Looks like your LD_LIBRARY_PATH contains incompatible version of cudnnPlease either remove it from the path or install cudnn (8, 5, 0).
I am not sure, but for WSL it was not recommended to install cudnn inside WSL so I had to install it in Windows(I’m using Windows 11). So I really don’t understand what you mean in the first point, if you could please explain the 2nd and 3rd point.
I am inside the .bashrc file, I see 3 lines export LD_LIBRARY_PATH=/usr/local/cuda/lib64:$LD_LIBRARY_PATH export LD_LIBRARY_PATH=/usr/local/cuda/include:$LD_LIBRARY_PATH export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/cuda/extras/CUPTI/lib64
are these the lines you’re talking about, if so, what should I do?