1 2 3 4 5 6 7 8 9 10 11
//! Types for the Mojo FFI bridge. //! //! - `primitives`: Math/physics types with Mojo-computed methods //! - `max` (feature = "max"): MAX ML framework types (Tensor, `DType`, etc.) pub mod primitives; #[cfg(feature = "max")] pub mod max; pub use primitives::*;