Skip to content

Commit

Permalink
fix code style
Browse files Browse the repository at this point in the history
  • Loading branch information
eaidova committed Nov 29, 2022
1 parent df79c83 commit 1f1c176
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/frontends/pytorch/src/op/addmm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ OutputVector translate_addmm(NodeContext& context) {
auto m2 = context.get_input(2);
auto beta = context.get_input(3);
auto alpha = context.get_input(4);
auto mm = context.mark_node(std::make_shared<opset8::MatMul>(m1, m2));
auto mm = context.mark_node(std::make_shared<opset8::MatMul>(m1, m2));
auto input_beta = context.mark_node(std::make_shared<opset8::Multiply>(input, beta));
auto mm_alpha = context.mark_node(std::make_shared<opset8::Multiply>(mm, alpha));
return {context.mark_node(std::make_shared<opset8::Add>(input_beta, mm_alpha))};
Expand Down

0 comments on commit 1f1c176

Please sign in to comment.