cubecl_matmul/components/global/
mod.rs

1//! Solves full reductions by loading blocks into shared memory.
2//! Handles memory movement, bound checks, plane specialization.
3
4pub mod args;
5pub mod memory;
6pub mod multi_stage;
7pub mod read;
8pub mod single_stage;
9
10mod base;
11mod copy_mechanism;
12mod shared;
13mod specialization;
14mod write;
15
16pub use base::*;
17pub use copy_mechanism::*;
18pub use shared::*;
19pub use specialization::*;
20pub use write::*;