We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90a4535 commit 15e85a9Copy full SHA for 15e85a9
crates/cubecl-matmul/src/components/global/write/stage.rs
@@ -30,6 +30,12 @@ pub struct PartitionedStage<ES: Numeric> {
30
impl<ES: Numeric> PartitionedStage<ES> {
31
/// Instantiate a new stage memory for the given identifier
32
pub fn new(unit_pos: Coords2d, #[comptime] config: StageMemoryConfig) -> PartitionedStage<ES> {
33
+ let config = comptime![StageMemoryConfig {
34
+ tiles_per_partition_along_row: 1,
35
+ tiles_per_partition_along_col: 1,
36
+ ..config
37
+ }];
38
+
39
let inner = StridedStageMemory::<ES, WriteTiling>::new(config);
40
let tile = inner.get_tile_mut(unit_pos);
41
0 commit comments