modelc 0.1.8

Rust CLI that compiles LLM weights (GGUF, Safetensors, ONNX, PyTorch) into a single .modelc artifact and serves a local OpenAI-compatible inference API with Metal GPU and CPU SIMD acceleration.
Documentation
1
2
3
4
5
6
7
//! Tensor runtime and inference ops used by tests and examples (`matmul`, `linear`, etc.).

pub mod gemv;
pub mod ops;
pub mod serve;
pub mod tensor;
pub mod transformer;