Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
louisfd committed Sep 10, 2024
1 parent 88fe822 commit 2b4fa9d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions crates/cubecl-linalg/src/matmul/cmma/compute_loop.rs
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,9 @@ fn compute_tile<F: Float, FC: Float>(
.rhs
.slice(shared_rhs_pos, shared_rhs_pos + smem_stride);

cmma::load::<FC>(&lhs, lhs_slice, 16);
cmma::load::<FC>(&rhs, rhs_slice, 16);
cmma::load::<FC>(lhs, lhs_slice, 16);
cmma::load::<FC>(rhs, rhs_slice, 16);

cmma::execute::<FC, FC, F, F>(&lhs, &rhs, &accumulator, &accumulator);
cmma::execute::<FC, FC, F, F>(lhs, rhs, accumulator, accumulator);
}
}
2 changes: 1 addition & 1 deletion crates/cubecl-linalg/src/matmul/tests/cmma/compute_loop.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use cubecl::prelude::*;
use cubecl_core as cubecl;

use crate::matmul::cmma::{
base::{make_cmma_matrices, Ids, SharedMemories },
base::{make_cmma_matrices, Ids, SharedMemories},
compute_loop::compute_loop,
config::{CmmaConfig, ComptimeCmmaInfo, WriteOutStrategy},
};
Expand Down

0 comments on commit 2b4fa9d

Please sign in to comment.