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
#[macro_export]
macro_rules! testgen_matmul_tma_partition {
    ($algorithm: ty, $precision: ty, $tiling_scheme_builder: expr) => {
        use $crate::components::PartitionSize;

        mod p1x1x4 {
            use super::*;

            $crate::testgen_matmul_tma_stage!(
                $algorithm,
                $precision,
                $tiling_scheme_builder.with_partition_size(PartitionSize { m: 1, n: 1, k: 4 })
            );
        }
    };
}