jsmpi 0.1.0

A browser-oriented MPI compatibility layer for Rust/WASM using Web Workers
Documentation
1
2
3
4
5
6
7
8
9
10
use serde::{Deserialize, Serialize};

pub type Rank = i32;
pub type Tag = i32;

#[derive(Debug, Clone, Copy, Default, Serialize, Deserialize)]
pub struct Status {
    pub source_rank: Rank,
    pub tag: Tag,
}