Skip to content

Commit 67c9a7e

Browse files
committed
fix clang-format
1 parent afc43fe commit 67c9a7e

File tree

1 file changed

+3
-3
lines changed
  • src/common/transformations/src/transformations/common_optimizations

1 file changed

+3
-3
lines changed

src/common/transformations/src/transformations/common_optimizations/rms_fusion.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -149,9 +149,9 @@ RMSFusion::RMSFusion(bool force_tail_convert, bool enable_div_x, bool enable_wit
149149

150150
auto output_type = elementwise_affine ? m.get_match_root()->get_output_element_type(0)
151151
: mul_or_div_node->get_output_element_type(0);
152-
std::shared_ptr<ov::op::internal::RMS> rms = elementwise_affine
153-
? std::make_shared<ov::op::internal::RMS>(x_output, gamma_node, eps_value, output_type)
154-
: std::make_shared<ov::op::internal::RMS>(x_output, eps_value, output_type);
152+
std::shared_ptr<ov::op::internal::RMS> rms =
153+
elementwise_affine ? std::make_shared<ov::op::internal::RMS>(x_output, gamma_node, eps_value, output_type)
154+
: std::make_shared<ov::op::internal::RMS>(x_output, eps_value, output_type);
155155
if (elementwise_affine) {
156156
rms->set_friendly_name(m.get_match_root()->get_friendly_name());
157157
ov::copy_runtime_info(m.get_matched_nodes(), rms);

0 commit comments

Comments
 (0)