@@ -411,7 +411,8 @@ TEST_F(TransformationTestsF, ConvertFCToCompressed9) {
411
411
auto sub = std::make_shared<ov::op::v1::Subtract>(convert, zp_convert);
412
412
auto scale_const = ov::op::v0::Constant::create (ov::element::f16, ov::Shape{ 32 , 1 }, { 1 });
413
413
auto scale = std::make_shared<ov::op::v1::Multiply>(sub, scale_const);
414
- auto fc = std::make_shared<ov::intel_gpu::op::FullyConnected>(input1, scale);
414
+ auto no_bias = std::make_shared<ov::intel_gpu::op::Placeholder>();
415
+ auto fc = std::make_shared<ov::intel_gpu::op::FullyConnected>(input1, scale, no_bias);
415
416
416
417
model = std::make_shared<ov::Model>(ov::NodeVector{ fc }, ov::ParameterVector{ input1 });
417
418
manager.register_pass <ConvertFullyConnectedToFullyConnectedCompressed>();
@@ -421,7 +422,8 @@ TEST_F(TransformationTestsF, ConvertFCToCompressed9) {
421
422
auto weights_const = ov::op::v0::Constant::create (ov::element::u8, ov::Shape{ 32 , 16 }, { 1 });
422
423
auto scale_const = ov::op::v0::Constant::create (ov::element::f16, ov::Shape{ 32 , 1 }, { 1 });
423
424
auto zp_const = ov::op::v0::Constant::create (ov::element::u8, ov::Shape{ 32 , 1 }, { 1 });
424
- auto fc_compressed = std::make_shared<ov::intel_gpu::op::FullyConnectedCompressed>(input1, weights_const, scale_const, zp_const);
425
+ auto no_bias = std::make_shared<ov::intel_gpu::op::Placeholder>();
426
+ auto fc_compressed = std::make_shared<ov::intel_gpu::op::FullyConnectedCompressed>(input1, weights_const, no_bias, scale_const, zp_const);
425
427
426
428
model_ref = std::make_shared<ov::Model>(ov::NodeVector{ fc_compressed }, ov::ParameterVector{ input1 });
427
429
}
0 commit comments