cubecl_matmul/lib.rs
1#![allow(unknown_lints)] // `manual_div_ceil` only appeared in 1.83
2#![allow(clippy::manual_div_ceil)]
3
4mod base;
5/// Components for matrix multiplication
6pub mod components;
7/// Contains matmul kernels
8pub mod kernels;
9/// Tests for matmul kernels
10#[cfg(feature = "export_tests")]
11pub mod tests;
12
13pub use base::*;
14
15/// Autotune key for matmul.
16pub mod tune_key;