kyro 0.1.1

A high-performance ML inference engine
pub struct DistributedContext {
    pub rank: u32,
    pub world_size: u32,
}

impl DistributedContext {
    pub fn new() -> Self {
        Self {
            rank: 0,
            world_size: 1,
        }
    }
}

impl Default for DistributedContext {
    fn default() -> Self {
        Self::new()
    }
}