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
18
#[macro_export]
macro_rules! testgen_matmul_tma_precision {
    ($algorithm: ty) => {
        #[cfg(feature = "matmul_tests_f16")]
        mod f16_ty {
            use super::*;

            $crate::testgen_matmul_tma_tiling_scheme!($algorithm, (half::f16, half::f16));
        }

        #[cfg(feature = "matmul_tests_f32")]
        mod f32_ty {
            use super::*;

            $crate::testgen_matmul_tma_tiling_scheme!($algorithm, (f32, f32));
        }
    };
}