LoginSignup
1
3

More than 3 years have passed since last update.

OpenBLASのソースをコンパイルしてローカルにインストールする

Last updated at Posted at 2019-10-12

OpenBLASを公式ページ からダウンロードして解凍。

terminal
$ curl -LO http://github.com/xianyi/OpenBLAS/archive/v0.3.7.tar.gz
$ tar -xvf v0.3.7.tar.gz

解凍したフォルダに移動して、下記のコマンドを打つと
OpenBLAS-0.3.7/bin, OpenBLAS-0.3.7/include, OpenBLAS-0.3.7/libに
インストールされる。

terminal
$ cd OpenBLAS-0.3.7
$ make 
$ make install PREFIX=$(pwd)

参考:
https://github.com/xianyi/OpenBLAS/wiki/User-Manual

1
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
3