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;
34/// Naive non-cooperative matmul without tiling that can be very fast on small matrices.
5pub mod naive;