cubecl_matmul/components/tile/mod.rs
1//! Matrix multiplication on register- or shared-memory tiles.
2//! Optimized for fixed shapes and low-level compute strategies.
3
4pub mod accelerated;
5pub mod io;
6pub mod mma;
7pub mod plane_vec_mat_inner_product;
8pub mod register;
9
10mod base;
11mod tile_data;
12
13pub use base::*;
14pub use tile_data::*;