Skip to content

Commit

Permalink
Clippy + Fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanielsimard committed Sep 9, 2024
1 parent 7922a57 commit b4f0696
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion crates/cubecl-linalg/src/matmul/tests/matmul_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,8 @@ pub fn test_matmul_cmma_unvectorizable_shapes<R: Runtime>(device: &R::Device) {
factor: 10000.,
epsilon: 0.1,
compute_f16: true,
}.test_cmma::<R>(device);
}
.test_cmma::<R>(device);
}

struct MatmulTestCase {
Expand Down
4 changes: 3 additions & 1 deletion crates/cubecl-linalg/src/tests/matmul/cmma/matmul.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ macro_rules! testgen_cmma_matmul {

#[test]
pub fn test_matmul_cmma_unvectorizable_shapes() {
tests::matmul_tests::test_matmul_cmma_unvectorizable_shapes::<TestRuntime>(&Default::default())
tests::matmul_tests::test_matmul_cmma_unvectorizable_shapes::<TestRuntime>(
&Default::default(),
)
}
};
}

0 comments on commit b4f0696

Please sign in to comment.