OpenBLAS 安装与使用
时间:2019-12-31 00:53:55
收藏:0
阅读:736
安装
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/12122210.html
评论(0)