diff --git a/crates/cubecl-linalg/src/matmul/tests/matmul_tests.rs b/crates/cubecl-linalg/src/matmul/tests/matmul_tests.rs index f24376961..97952284c 100644 --- a/crates/cubecl-linalg/src/matmul/tests/matmul_tests.rs +++ b/crates/cubecl-linalg/src/matmul/tests/matmul_tests.rs @@ -123,7 +123,8 @@ pub fn test_matmul_cmma_unvectorizable_shapes(device: &R::Device) { factor: 10000., epsilon: 0.1, compute_f16: true, - }.test_cmma::(device); + } + .test_cmma::(device); } struct MatmulTestCase { diff --git a/crates/cubecl-linalg/src/tests/matmul/cmma/matmul.rs b/crates/cubecl-linalg/src/tests/matmul/cmma/matmul.rs index e76cb7474..56cb9c251 100644 --- a/crates/cubecl-linalg/src/tests/matmul/cmma/matmul.rs +++ b/crates/cubecl-linalg/src/tests/matmul/cmma/matmul.rs @@ -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::(&Default::default()) + tests::matmul_tests::test_matmul_cmma_unvectorizable_shapes::( + &Default::default(), + ) } }; }