1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
use ::af; mod impl_ops; // mod macros; #[derive(Clone, Copy)] pub enum Axes { Row, Col, } // 2D Matrix #[derive(Clone)] pub struct Matrix { rows: usize, cols: usize, backend: af::Array, data: Vec<f64>, }