Montre comment installer openBLAS. Je peux installer openBLAS avec apt-get, mais je l'ai installé à partir du code source car la destination d'installation n'est pas claire.
Allons-y.
Téléchargement normal: http://www.openblas.net Lors de l'utilisation de git: $git clone https://github.com/xianyi/OpenBLAS.git
Téléchargez dans / home / Qiita / Download. (C'était OpenBLAS-0.3.10.tar.gz dans la version créée dans cet article)
La destination de l'installation est / opt / openblas.
compile&install
$sudo mkdir /opt/openblas
$cd /home/Qiita/Download
$tar -xvf OpenBLAS-0.3.10.tar.gz
$cd /OpenBLAS-0.3.10
$make
$sudo make install PREFIX=/opt/openblas
C'est fini.