1 2 3 4 5 6 7 8 9 10 11 12 13
mod base; /// Components for matrix multiplication pub mod components; /// Contains matmul kernels pub mod kernels; /// Tests for matmul kernels #[cfg(feature = "export_tests")] pub mod tests; pub use base::*; /// Autotune key for matmul. pub mod tune_key;