cubecl-matmul 0.8.1

CubeCL Matrix Multiplication Kernels Engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mod algorithm;
mod precision;
mod tiling_scheme;

#[macro_export]
macro_rules! testgen_matmul_plane_mma {
    () => {
        mod matmul_plane_mma {
            use super::*;
            use cubecl_matmul::components::tile::io::Filled;
            type TMM = $crate::components::tile::mma::MmaMatmul<Filled>;

            #[cfg(feature = "matmul_tests_plane")]
            $crate::testgen_matmul_plane_mma_algorithm!();
        }
    };
}