@@ -325,7 +325,7 @@ TEST_F(TransformationTestsF, RMSNormFusionTest10) {
325325 {
326326 auto input = std::make_shared<ov::opset10::Parameter>(ov::element::f32 , ov::Shape{1 , 2 , 6 });
327327 auto scale = std::make_shared<ov::opset10::Parameter>(ov::element::f32 , ov::Shape{1 , 2 , 6 });
328-
328+
329329 auto power_const = ov::opset10::Constant::create (ov::element::f32 , {}, {2 .f });
330330 auto power = std::make_shared<ov::opset10::Power>(input, power_const);
331331 auto mean_axes = ov::opset10::Constant::create (ov::element::i64 , ov::Shape{1 }, {-1 });
@@ -344,8 +344,9 @@ TEST_F(TransformationTestsF, RMSNormFusionTest10) {
344344 {
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 });
347-
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 });
347+
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
@@ -358,7 +359,7 @@ TEST_F(TransformationTestsF, RMSNormFusionTest11) {
358359 {
359360 auto input = std::make_shared<ov::opset10::Parameter>(ov::element::f32 , ov::PartialShape{-1 , -1 , 6 });
360361 auto scale = std::make_shared<ov::opset10::Parameter>(ov::element::f32 , ov::PartialShape{-1 , -1 , 6 });
361-
362+
362363 auto power_const = ov::opset10::Constant::create (ov::element::f32 , {}, {2 .f });
363364 auto power = std::make_shared<ov::opset10::Power>(input, power_const);
364365 auto mean_axes = ov::opset10::Constant::create (ov::element::i64 , ov::Shape{1 }, {-1 });
@@ -377,8 +378,9 @@ TEST_F(TransformationTestsF, RMSNormFusionTest11) {
377378 {
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 });
380-
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 });
381+
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