Closed jared-visionbox closed 7 months ago
Not sure but maybe graphics card is not supported by current torch anymore? In the link is mentioned that even torch.is_available() might return true although it can fail then.
You can check compatibility here: https://developer.nvidia.com/cuda-gpus
If not supported it still may be possible to compile pytorch for yourself.
I have a NVIDIA Quadro M1200. Compute Capability 5.0.
Running this command: python -c "import torch; print(torch.cuda.get_arch_list())"
I can see that compute_37. Does this mean that a compute capability of 3.7 is required?
Not sure if this would be helpful but here are the output when I input command: python -m torch.utils.collect_env
Collecting environment information...
PyTorch version: 2.2.2+cu118
Is debug build: False
CUDA used to build PyTorch: 11.8
ROCM used to build PyTorch: N/A
OS: Microsoft Windows 10 Pro
GCC version: Could not collect
Clang version: Could not collect
CMake version: Could not collect
Libc version: N/A
Python version: 3.9.6 (tags/v3.9.6:db3ff76, Jun 28 2021, 15:26:21) [MSC v.1929 64 bit (AMD64)] (64-bit runtime)
Python platform: Windows-10-10.0.19045-SP0
Is CUDA available: True
CUDA runtime version: 11.8.89
CUDA_MODULE_LOADING set to: LAZY
GPU models and configuration: GPU 0: Quadro M1200
Nvidia driver version: 536.45
HIP runtime version: N/A
MIOpen runtime version: N/A
Is XNNPACK available: True
CPU:
Architecture=9
CurrentClockSpeed=2701
Family=198
L2CacheSize=1024
L2CacheSpeed=
Manufacturer=GenuineIntel
MaxClockSpeed=2701
Name=Intel(R) Core(TM) i7-6820HQ CPU @ 2.70GHz
ProcessorType=3
Revision=24067
Versions of relevant libraries:
[pip3] numpy==1.26.4
[pip3] onnxruntime==1.17.3
[pip3] torch==2.2.2+cu118
[pip3] torchaudio==2.2.2
[conda] Could not collect
This is beyond the scope if this lib and belongs to the torch forum. Another user with the same problem and the same graphics card: https://discuss.pytorch.org/t/cudacheckerror-failed-no-kernel-image-is-available-for-execution-on-the-device/25026
Thanks, will take a look at those resources!
Maybe cuDNN 9.1.0 is worth a try
Followed the installation steps to run the repo. When I try running realtimestt_test.py, I get this runtime error:
I confirmed that Cuda 11.8 is installed using:
nvcc -V
and have the cuDNN (8.7.0) files as well. Torch is also available.