diff --git a/src/frontends/pytorch/src/op/index_fill_.cpp b/src/frontends/pytorch/src/op/index_fill_.cpp index 40760d2f358100..a24f3fa2f5b1c7 100644 --- a/src/frontends/pytorch/src/op/index_fill_.cpp +++ b/src/frontends/pytorch/src/op/index_fill_.cpp @@ -49,15 +49,16 @@ OutputVector translate_index_fill_(const NodeContext& context) { auto index_len = context.mark_node(std::make_shared(index_shape, const_0, const_1, const_1)); // [A, B, ..., T, ..., K] --> [A, B, ..., len(index), ..., K] - auto target_shape = std::make_shared(input_shape, - dim_vec, - index_len, - v0::Constant::create(element::i32, Shape{}, {0})); + auto target_shape = std::make_shared(input_shape, + dim_vec, + index_len, + v0::Constant::create(element::i32, Shape{}, {0})); // broadcast && index fill auto broadcasted_value = context.mark_node(std::make_shared(value_vec, target_shape, dim_vec)); auto broadcasted_index = context.mark_node(std::make_shared(index, target_shape, dim_vec)); - auto result = context.mark_node(std::make_shared(input, broadcasted_index, broadcasted_value, dim)); + auto result = context.mark_node( + std::make_shared(input, broadcasted_index, broadcasted_value, dim)); return {result}; };