Skip to content

Commit

Permalink
Set right config for v1
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanielsimard committed Nov 25, 2024
1 parent 227204c commit fa2ae77
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ impl<EG: Numeric> base::Algorithm<EG> for Cmma<EG> {
Self::EG,
Self::ES,
Self::GlobalMatmul,
batch::TransposedDispatch,
batch::SwizzleTransposedDispatch<2>,
>;

fn cube_count(problem: &MatmulProblem) -> CubeCount {
Expand Down
4 changes: 2 additions & 2 deletions crates/cubecl-linalg/src/matmul/kernels/matmul/base.rs
Original file line number Diff line number Diff line change
Expand Up @@ -153,8 +153,8 @@ pub(crate) fn matmul_cube_preparation<R: Runtime, EG: Numeric, D: Algorithm<EG>>
let cube_count = D::cube_count(&problem);

let advanced_config = AdvancedConfig {
lhs_tiling_order: matmul::components::stage::TilingOrderConfig::RowMajor,
rhs_tiling_order: matmul::components::stage::TilingOrderConfig::ColMajor,
lhs_tiling_order: matmul::components::stage::TilingOrderConfig::ColMajor,
rhs_tiling_order: matmul::components::stage::TilingOrderConfig::RowMajor,
enforced_tile_layout: (None, None),
};

Expand Down

0 comments on commit fa2ae77

Please sign in to comment.