I keep getting errors such as
Warning (from warnings module):
File "/home/dave/.local/lib/python3.12/site-packages/torch/cuda/__init__.py", line 384
_warn_unsupported_code(d, device_cc, code_ccs)
UserWarning: Found GPU0 Orin which is of compute capability (CC) 8.7.
The following list shows the CCs this version of PyTorch was built for and the hardware CCs it supports:
- 8.0 which supports hardware CC >=8.0,<9.0 except {8.7}
- 9.0 which supports hardware CC >=9.0,<10.0
- 10.0 which supports hardware CC >=10.0,<11.0 except {10.1}
- 11.0 which supports hardware CC >=11.0,<12.0
- 12.0 which supports hardware CC >=12.0,<13.0
when running PyTorch queues. I install the following from the official PyTorch website:
pip3 install torch torchvision --index-url https://download.pytorch.org/whl/cu132
Since my NVCC version is 13.2:
me@localhost:~$ nvcc --version
nvcc: NVIDIA (R) Cuda compiler driver
Copyright (c) 2005-2026 NVIDIA Corporation
Built on Thu_Mar_19_11:11:41_PM_PDT_2026
Cuda compilation tools, release 13.2, V13.2.78
Build cuda_13.2.r13.2/compiler.37668154_0
Yet PyTorch is telling me I need something with Compute Core 8.7? How do I actually get a supported PyTorch version on my Orin Nano JetPack 7.2 distro?