mpi-rs 0.1.0

A pure-Rust implementation of the Message Passing Interface (MPI), API-compatible with rsmpi. No C library required.
Documentation
1
2
3
4
5
6
//! The `mpirun` launcher binary (an alias for `mpiexec`). All logic lives in
//! [`mpi::launcher`].

fn main() {
    mpi::launcher::run();
}