diff --git a/compiler/tests/unittest/end_to_end_jit_fhelinalg.cc b/compiler/tests/unittest/end_to_end_jit_fhelinalg.cc index 90700f574..a0dff637b 100644 --- a/compiler/tests/unittest/end_to_end_jit_fhelinalg.cc +++ b/compiler/tests/unittest/end_to_end_jit_fhelinalg.cc @@ -3521,15 +3521,15 @@ TEST_P(TiledMatMulParametric, tiled_matmul_eint_int) { } } -INSTANTIATE_TEST_SUITE_P(TiledMatMul, TiledMatMulParametric, +INSTANTIATE_TEST_SUITE_P(DISABLED_TiledMatMul, TiledMatMulParametric, ::testing::Values( - // Element-sized tiles - std::vector{1, 1, 1}, + // Element-sized tiles + std::vector{1, 1, 1}, - // Mixed tiles - std::vector{2, 2, 2}, - std::vector{4, 4, 2}, - std::vector{2, 4, 2}, + // Mixed tiles + std::vector{2, 2, 2}, + std::vector{4, 4, 2}, + std::vector{2, 4, 2}, - // Single, big tile - std::vector{8, 4, 2})); + // Single, big tile + std::vector{8, 4, 2}));