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
//! Matrix multiplication on register- or shared-memory tiles.
//! Optimized for fixed shapes and low-level compute strategies.

pub mod accelerated;
pub mod io;
pub mod mma;
pub mod plane_vec_mat_inner_product;
pub mod register;

mod base;
mod tile_data;

pub use base::*;
pub use tile_data::*;