mlxrs 0.1.0

Safe Rust bindings for Apple's MLX array framework, with LM, VLM, audio, and embeddings support
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Method-form bridges: `a.add(&b)`, `a.reshape(...)`, etc.
//!
//! One submodule per ops group, mirroring `crate::ops`.

pub mod arithmetic;
pub mod comparison;
pub mod fft;
pub mod indexing;
pub mod linalg_basic;
pub mod linalg_full;
pub mod logical;
pub mod misc;
pub mod random;
pub mod reduction;
pub mod shape;