MATLAB GPU coder for jetson
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Unable to find the 'cuBLAS' library. Update the '.bashrc' script on the target to setup the 'LD_LIBRARY_PATH' environment variable.
I don't know where I can find it.
If you look at the vim environment now,
LD_LIBRARY_PATH= "/usr/local/coda/lib64".
Is there a Linux command that can check the cuBLAS file installation?

1 Kommentar
Irfan Ahmed
am 23 Okt. 2020
Bearbeitet: Walter Roberson
am 23 Okt. 2020
From your home directory open .bashrc file (> vim .bashrc) and add the following bold line:
case $- in
*i*) ;;
*)
export PATH=${PATH}:/usr/local/cuda-10.2/bin
export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:/usr/local/cuda-10.2/lib64
export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:/usr/lib/aarch64-linux-gnu
return;;
esac
Antworten (1)
Stepan Voronin
am 12 Dez. 2020
dlinano@dlinano-desktop:~$ vi /etc/environment
PATH="/usr/local/cuda/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin"
LD_LIBRARY_PATH="/usr/lib/aarch64-linux-gnu/stubs/:/usr/local/cuda/lib64/"
0 Kommentare
Siehe auch
Kategorien
Mehr zu Deployment finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!