cubecl_linalg/
lib.rs

1#![allow(unknown_lints)] // `manual_div_ceil` only appeared in 1.83
2#![allow(clippy::manual_div_ceil)]
3
4/// Contains matmul kernels and Cube components
5pub mod matmul;
6
7/// Contains convolution using matmul components
8pub mod convolution;
9
10/// Contains basic tensor helpers.
11pub mod tensor;