Skip to main content

aprender/primitives/
mod.rs

1//! Core compute primitives (Vector, Matrix).
2//!
3//! These types provide the foundation for all ML algorithms.
4//! Designed for future Trueno integration.
5
6mod matrix;
7mod vector;
8
9pub use matrix::Matrix;
10pub use vector::Vector;