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