scalapack

High-performance linear algebra library for distributed memory machines.

brewmacoslinux
Try with needOr install directly
Source

About

High-performance linear algebra for distributed memory machines

Examples

link scalapack libraries in fortran program compilation$ gfortran myprogram.f90 -L$(brew --prefix scalapack)/lib -lscalapack -llapack -lblas -o myprogram
find scalapack installation path and library location$ brew --prefix scalapack && ls $(brew --prefix scalapack)/lib
use scalapack in c program with mpi compiler$ mpicc myprogram.c -L$(brew --prefix scalapack)/lib -lscalapack -llapack -lblas -o myprogram
check scalapack version and available files$ brew info scalapack && ls $(brew --prefix scalapack)
compile parallel linear algebra code with scalapack headers$ mpif90 -I$(brew --prefix scalapack)/include myparallel.f90 -L$(brew --prefix scalapack)/lib -lscalapack -o myparallel