@@ -345,7 +345,8 @@ TEST_F(TransformationTestsF, RMSNormFusionTest10) {
345345 auto input = std::make_shared<ov::opset10::Parameter>(ov::element::f32 , ov::Shape{1 , 2 , 6 });
346346 auto scale = std::make_shared<ov::opset10::Parameter>(ov::element::f32 , ov::Shape{1 , 2 , 6 });
347347
348- auto rms_const = ov::opset10::Constant::create (ov::element::f32 , ov::Shape{6 }, {1 .0f , 1 .0f , 1 .0f , 1 .0f , 1 .0f , 1 .0f });
348+ auto rms_const =
349+ ov::opset10::Constant::create (ov::element::f32 , ov::Shape{6 }, {1 .0f , 1 .0f , 1 .0f , 1 .0f , 1 .0f , 1 .0f });
349350 auto rms = std::make_shared<ov::op::internal::RMS>(input, rms_const, 1e-5f , ov::element::f32 , false );
350351 auto mul = std::make_shared<ov::opset10::Multiply>(rms, scale);
351352
@@ -378,7 +379,8 @@ TEST_F(TransformationTestsF, RMSNormFusionTest11) {
378379 auto input = std::make_shared<ov::opset10::Parameter>(ov::element::f32 , ov::PartialShape{-1 , -1 , 6 });
379380 auto scale = std::make_shared<ov::opset10::Parameter>(ov::element::f32 , ov::PartialShape{-1 , -1 , 6 });
380381
381- auto rms_const = ov::opset10::Constant::create (ov::element::f32 , ov::Shape{6 }, {1 .0f , 1 .0f , 1 .0f , 1 .0f , 1 .0f , 1 .0f });
382+ auto rms_const =
383+ ov::opset10::Constant::create (ov::element::f32 , ov::Shape{6 }, {1 .0f , 1 .0f , 1 .0f , 1 .0f , 1 .0f , 1 .0f });
382384 auto rms = std::make_shared<ov::op::internal::RMS>(input, rms_const, 1e-6f , ov::element::f32 , false );
383385 auto mul = std::make_shared<ov::opset10::Multiply>(rms, scale);
384386
0 commit comments