Registry / networking / mpi-sys

mpi-sys

JSON →
library0.2.3rscratesunverified

Low-level FFI bindings to the Message Passing Interface (MPI) for Rust.

# Cargo.toml [dependencies] mpi-sys = "0.2.3"
INSTALL
IMPORT
SIG · MPI-SYS
M
mpi-sys
networkingrustv0.2.3
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

MPI_Init
use mpi_sys::MPI_Init;

Initializes MPI using the low-level FFI bindings.

use mpi_sys::MPI_Init; fn main() { unsafe { let mut argc = 0; let mut argv = std::ptr::null_mut(); MPI_Init(&mut argc, &mut argv); println!("MPI initialized"); } }
Debug
Known issues
gotchaRequires MPI runtime (e.g., OpenMPI, MPICH) to be installed on the system.
fix
Install an MPI implementation before using this crate.
affects: *
Upgrade
Version history
0.2.3latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
5 hits · last 30 days
node
4
Amazon
1
Resources
mpi-sys — cargo add mpi-sys · libregistry