mpi 0.8.1

Message Passing Interface bindings for Rust
Documentation
#![deny(warnings)]

use mpi::traits::*;

fn main() {
    let universe = mpi::initialize().unwrap();
    let world = universe.world();

    // Check that we're actually running in parallel. This can fail if the wrong
    // mpiexec is being found, for example.
    assert!(world.size() > 1, "Expected world size {} > 1", world.size());

    let rank = world.rank();
    let count = world.size() as usize;

    let mut a = vec![false; count];
    world.all_gather_into(&(rank % 2 == 0), &mut a[..]);

    let answer: Vec<_> = (0..count).map(|i| i % 2 == 0).collect();

    assert_eq!(answer, a);
}