Skip to content

Commit

Permalink
code style 1
Browse files Browse the repository at this point in the history
  • Loading branch information
CuriousPanCake committed Dec 16, 2024
1 parent 0f0c1e7 commit a6efe14
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/common/transformations/tests/utils/convert_precision.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1992,12 +1992,12 @@ static std::shared_ptr<ov::Model> make_then_body(bool ref) {
auto divide = std::make_shared<opset10::Divide>(subtract, sqrt);

auto mul_const =
opset10::Constant::create(element::f16, Shape{1, 1, 1, 24}, std::vector<float16>(24, 1)); //stub values
opset10::Constant::create(element::f16, Shape{1, 1, 1, 24}, std::vector<float16>(24, 1)); // stub values
auto mul_conv = std::make_shared<opset10::Convert>(mul_const, element::f32);
auto mul = std::make_shared<opset10::Multiply>(divide, mul_conv);

auto add_const_1 =
opset10::Constant::create(element::f16, Shape{1, 1, 1, 24}, std::vector<float16>(24, 1)); //stub values
opset10::Constant::create(element::f16, Shape{1, 1, 1, 24}, std::vector<float16>(24, 1)); // stub values
auto add_conv = std::make_shared<opset10::Convert>(add_const_1, element::f32);
auto add_1 = std::make_shared<opset10::Multiply>(mul, add_conv);

Expand Down

0 comments on commit a6efe14

Please sign in to comment.