realizar 0.8.4

Pure Rust ML inference engine built from scratch - model serving for GGUF and safetensors
1
2
3
4
5
6
7
8
9
10
11
12

/// PMAT-216: Implement TracedForward trait for CPU backend
impl TracedForward for AprTransformer {
    fn forward_traced(&mut self, tokens: &[u32]) -> Result<ForwardTrace> {
        // Delegate to the immutable method (CPU doesn't need mutation)
        AprTransformer::forward_traced(self, tokens)
    }
}

// Tests shattered to tests/ directory (PMAT-803)
#[cfg(test)]
mod tests;