openblas

Optimized BLAS library for high-performance linear algebra

brewmacoslinux
Try with needOr install directly
Source

About

Optimized BLAS library

Commands

openblas

Examples

Link OpenBLAS in C/C++ code compilation$ gcc myprogram.c -o myprogram -I$(brew --prefix openblas)/include -L$(brew --prefix openblas)/lib -lopenblas
Use OpenBLAS with Python NumPy by setting environment variable$ export OPENBLAS=$(brew --prefix openblas) && python script.py
Check OpenBLAS installation path and version info$ brew --prefix openblas && ls $(brew --prefix openblas)/lib