Hello,
I used sdkmanager tool to flash the jetson board with jetpack 6. Then i followed Installing PyTorch for Jetson Platform - NVIDIA Docs this tutorial. and installed torch-2.4.0a0+07cecf4168.nv24.05.14710581-cp310-cp310-linux_aarch64.whl file using pip.
i chose above specific file because when i was installing cusparselt, i got following error.
+ mkdir tmp_cusparselt
+ cd tmp_cusparselt
+ [[ 12.1 =~ ^12\.[1-4]$ ]]
+ arch_path=sbsa
++ uname -m
+ export TARGETARCH=aarch64
+ TARGETARCH=aarch64
+ '[' aarch64 = amd64 ']'
+ '[' aarch64 = x86_64 ']'
+ CUSPARSELT_NAME=libcusparse_lt-linux-sbsa-0.5.2.1-archive
+ curl --retry 3 -OLs https://developer.download.nvidia.com/compute/cusparselt/redist/libcusparse_lt/linux-sbsa/libcusparse_lt-linux-sbsa-0.5.2.1-archive.tar.xz
+ tar xf libcusparse_lt-linux-sbsa-0.5.2.1-archive.tar.xz
+ cp -a libcusparse_lt-linux-sbsa-0.5.2.1-archive/include/cusparseLt.h /usr/local/cuda/include/
cp: cannot create regular file '/usr/local/cuda/include/cusparseLt.h': Permission denied
Hence i chose to install pytorch which is older than 24.06 PyTorch. Installing PyTorch for Jetson Platform - NVIDIA Docs
Installation was successful but when i tried to use torch library, it gave runtimeerror.
Python 3.10.12 (main, Feb 4 2025, 14:57:36) [GCC 11.4.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import torch
Traceback (most recent call last):
File "/home/mzjet/.local/lib/python3.10/site-packages/torch/__init__.py", line 176, in _load_global_deps
ctypes.CDLL(lib_path, mode=ctypes.RTLD_GLOBAL)
File "/usr/lib/python3.10/ctypes/__init__.py", line 374, in __init__
self._handle = _dlopen(self._name, mode)
OSError: libnvToolsExt.so.1: cannot open shared object file: No such file or directory
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/home/mzjet/.local/lib/python3.10/site-packages/torch/__init__.py", line 236, in <module>
_load_global_deps()
File "/home/mzjet/.local/lib/python3.10/site-packages/torch/__init__.py", line 197, in _load_global_deps
_preload_cuda_deps(lib_folder, lib_name)
File "/home/mzjet/.local/lib/python3.10/site-packages/torch/__init__.py", line 162, in _preload_cuda_deps
raise ValueError(f"{lib_name} not found in the system path {sys.path}")
ValueError: libcublas.so.*[0-9] not found in the system path ['', '/usr/lib/python310.zip', '/usr/lib/python3.10', '/usr/lib/python3.10/lib-dynload', '/home/mzjet/.local/lib/python3.10/site-packages', '/usr/local/lib/python3.10/dist-packages', '/usr/lib/python3/dist-packages', '/usr/lib/python3.10/dist-packages']
I have added the cuda path to the LD_LIBRARY_PATH
.
echo $LD_LIBRARY_PATH
/usr/local/cuda/lib64:/usr/lib/llvm-8/lib:/usr/local/cuda-12.2/lib64:
I am not sure what am i doing wrong. If anyone could help me out here, would be helpful.
Thanks