mpich

Open-source implementation of the MPI message passing interface

brewmacoslinux
Try with needOr install directly
Source

About

Implementation of the MPI Message Passing Interface standard

Commands

mpiccmpicxxmpifortmpiexecmpirun

Examples

Compile a C program with MPI$ mpicc -o hello hello.c
Run MPI program on 4 processes$ mpirun -np 4 ./hello
Compile and run a Fortran MPI program$ mpifort -o prog prog.f90 && mpirun -np 2 ./prog