OpenBLAS 安装与使用

安装

git clone https://github.com/xianyi/OpenBLAS.git
cd OpenBLAS
make
make install PREFIX=your_installation_directory

使用

gcc -o test test.c -I /your_path/OpenBLAS/include/ -L/your_path/OpenBLAS/lib -lopenblas
原文地址:https://www.cnblogs.com/yaos/p/14014196.html