Hi everyone,
I need some help regarding building Pytorch with Cuda on my Jetson Orin Nano which is using Jetpack 6, Python 3.10, Ubuntu 22.04 LTS ,a CUDA version of 12.4 (from jtop) abd cuDNN version of 8.9.4 (from jtop).
From what I did, I went to download CUDA Toolkit 12.4 and Pytorch with CUDA 12.1 support. Then I open my Python 3.10 to run torch.cuda.is_available() and it said false.
CUDA Toolkit 12.4 : CUDA Toolkit 12.4 Update 1 Downloads | NVIDIA Developer
codes given from website above:
wget https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2204/arm64/cuda-keyring_1.1-1_all.deb
sudo dpkg -i cuda-keyring_1.1-1_all.deb
sudo apt-get update
sudo apt-get -y install cuda-toolkit-12-4 cuda-compat-12-4
Pytorch with CUDA support website: Start Locally | PyTorch
codes:
pip3 install torch torchvision torchaudio
I have no idea at this point, is there someone who can show me the steps to do it?