Skip to content

Commit e9e889a

Browse files
Adjust ConvertMatMulToFullyConnectedExceptionTest_sibling_matmul
The test previously expected the transformation to fail due to the use of input2 as a weight. The new logic allows use of parameters as weights, so the test has been adjusted to expect a successful transformation.
1 parent 476f80f commit e9e889a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/plugins/intel_gpu/tests/unit/transformations/convert_matmul_to_fc_test.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -562,7 +562,7 @@ TEST(TransformationTests, ConvertMatMulToFullyConnectedExceptionTest_sibling_mat
562562
break;
563563
}
564564
}
565-
ASSERT_TRUE(success == false);
565+
ASSERT_TRUE(success == true);
566566

567567
func = CreateMatMul(false, false, false, true);
568568
manager.run_passes(func);
@@ -574,7 +574,7 @@ TEST(TransformationTests, ConvertMatMulToFullyConnectedExceptionTest_sibling_mat
574574
break;
575575
}
576576
}
577-
ASSERT_TRUE(success == false);
577+
ASSERT_TRUE(success == true);
578578
}
579579

580580
TEST(TransformationTests, ConvertMatMulToFullyConnectedExceptionTest_sibling_matmul_same_input) {

0 commit comments

Comments
 (0)