MATLAB GPU coder for jetson

2 次查看(过去 30 天)
sunho jang
sunho jang 2020-9-10
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 个评论
Irfan Ahmed
Irfan Ahmed 2020-10-23
编辑:Walter Roberson 2020-10-23
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

请先登录,再进行评论。

回答(1 个)

Stepan Voronin
Stepan Voronin 2020-12-12
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/"

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by