Skip to content

Commit a09568a

Browse files
code style
1 parent 4f95a72 commit a09568a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/common/transformations/src/transformations/common_optimizations/group_normalization_fusion.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,8 @@ ov::pass::GroupNormalizationFusion::GroupNormalizationFusion() {
173173
auto gather_indices_vals = std::vector<int64_t>();
174174
for (auto i = 0; i < num_groups; i++)
175175
gather_indices_vals.insert(gather_indices_vals.end(), num_channels / num_groups, i);
176-
auto gather_indices_const_m = op::v0::Constant::create(element::i64, Shape{static_cast<size_t>(num_channels)}, gather_indices_vals);
176+
auto gather_indices_const_m =
177+
op::v0::Constant::create(element::i64, Shape{static_cast<size_t>(num_channels)}, gather_indices_vals);
177178
nodes.push_back(gather_indices_const_m);
178179

179180
if (pattern_map.count(instance_norm_beta_m) > 0) {

0 commit comments

Comments
 (0)