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
//! The `mpiexec` launcher binary. All logic lives in [`mpi::launcher`].

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