boost-mpi

Boost.MPI library for C++/MPI interoperability and parallel computing

brewmacoslinux
Try with needOr install directly
Source

About

C++ library for C++/MPI interoperability

Commands

boost-mpi

Examples

Compile a C++ program using Boost.MPI with mpic++$ mpic++ -I$(brew --prefix boost-mpi)/include -L$(brew --prefix boost-mpi)/lib -lboost_mpi -lboost_system program.cpp -o program
Run an MPI program compiled with Boost.MPI on 4 processes$ mpirun -np 4 ./program
Check Boost.MPI installation path for headers and libraries$ ls $(brew --prefix boost-mpi)/lib | grep mpi