Closed FelipeMLopez closed 1 year ago
It seems that have found the problem. Apparently there was a misalignment between the CUDA drivers version and the version on Torch. This is the version I had on Torch:
Requirement already satisfied: nvidia-cuda-runtime-cu11==11.7.99 in ./venv/lib/python3.9/site-packages (from torch) (11.7.99)
Requirement already satisfied: nvidia-cuda-nvrtc-cu11==11.7.99 in ./venv/lib/python3.9/site-packages (from torch) (11.7.99)
And this is the version of nvcc installed:
nvcc: NVIDIA (R) Cuda compiler driver
Copyright (c) 2005-2021 NVIDIA Corporation
Built on Sun_Aug_15_21:14:11_PDT_2021
Cuda compilation tools, release 11.4, V11.4.120
Build cuda_11.4.r11.4/compiler.30300941_0
I simply downgrade to the most recent previous version:
pip install torch==1.12.1+cu113 torchvision==0.13.1+cu113 torchaudio==0.12.1 --extra-index-url https://download.pytorch.org/whl/cu113
It works fine now. Thank you!
Hi! First of all, thank you very much for this awesome project. I'm facing some issues when trying to execute this code:
This is the output error:
It seems to have problems when trying to get query project (line 178 @ architecture.py) Does anyone have the same problem?
Thanks for the help!