Skip to content

Commit b94aa9c

Browse files
committed
clang-format
1 parent 8c68bc0 commit b94aa9c

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/cpp/utils/src/image_utils.cpp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,8 @@ Output<Node> cropResizeGraph(const ov::Output<ov::Node>& input,
217217
opset10::Constant::create(element::i64, Shape{1}, {1}),
218218
opset10::Constant::create(element::i64, Shape{1}, {h_axis}));
219219
auto then_body_res_1 = std::make_shared<opset10::Result>(then_cropped_frame);
220-
auto then_body = std::make_shared<Model>(ov::ResultVector{then_body_res_1}, ParameterVector{image_t, iw_t, ih_t});
220+
auto then_body =
221+
std::make_shared<Model>(ov::ResultVector{then_body_res_1}, ParameterVector{image_t, iw_t, ih_t});
221222

222223
// else_body
223224
auto image_e = std::make_shared<opset10::Parameter>(element::u8, PartialShape{-1, -1, -1, 3});
@@ -235,7 +236,8 @@ Output<Node> cropResizeGraph(const ov::Output<ov::Node>& input,
235236
opset10::Constant::create(element::i64, Shape{1}, {1}),
236237
opset10::Constant::create(element::i64, Shape{1}, {w_axis}));
237238
auto else_body_res_1 = std::make_shared<opset10::Result>(else_cropped_frame);
238-
auto else_body = std::make_shared<Model>(ov::ResultVector{else_body_res_1}, ParameterVector{image_e, iw_e, ih_e});
239+
auto else_body =
240+
std::make_shared<Model>(ov::ResultVector{else_body_res_1}, ParameterVector{image_e, iw_e, ih_e});
239241

240242
// if operator
241243
auto condition = std::make_shared<opset10::Greater>(ih, iw);

0 commit comments

Comments
 (0)