mlx-sys 0.0.10-alpha

Rust bindings for mlx
1
2
3
4
5
6
7
8
9
10
11
//! TODO: Are these supposed to be exposed? The header is not included in mlx/mlx.h

#[cxx::bridge]
pub mod ffi {
    unsafe extern "C++" {
        include!("mlx/primitives.h");

        #[namespace = "mlx::core"]
        type Primitive;
    }
}