blis

BLAS-like library for high-performance linear algebra operations.

brewmacoslinux
Try with needOr install directly
Source

About

BLAS-like Library Instantiation Software Framework

Examples

link C code against optimized matrix multiplication library$ gcc -o myapp myapp.c -lblis -lm
check installed blis library version and configuration$ pkg-config --modversion blis
compile Fortran code with blis linear algebra routines$ gfortran -o myapp myapp.f90 -lblis -lm
find blis library headers and location on system$ pkg-config --cflags --libs blis
use blis in python for fast numerical computations$ python3 -c "import numpy as np; np.dot(A, B)" # with blis backend