cubecl_matmul/kernels/
mod.rs

1/// The layered matmul combines multiple component-based algorithm implementations with selection logic to pick the optimal kernel for a set of parameters.
2pub mod layered;
3
4/// Naive non-cooperative matmul without tiling that can be very fast on small matrices.
5pub mod naive;