cubecl-matmul 0.8.1

CubeCL Matrix Multiplication Kernels Engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod base;
/// Components for matrix multiplication
pub mod components;
/// Contains matmul kernels
pub mod kernels;
/// Tests for matmul kernels
#[cfg(feature = "export_tests")]
pub mod tests;

pub use base::*;

/// Autotune key for matmul.
pub mod tune_key;