Skip to content

Commit

Permalink
code style fix
Browse files Browse the repository at this point in the history
  • Loading branch information
antonvor committed Oct 4, 2023
1 parent 407d4b3 commit 5498491
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,8 @@ pass::ConvertGather8ToGather7::ConvertGather8ToGather7() {

std::shared_ptr<ov::Node> new_indices_constant;
if (do_indices_normalization) {
new_indices_constant = std::make_shared<ov::op::v0::Constant>(indices_constant->get_element_type(), indices_constant->get_shape(), indices);
new_indices_constant = std::make_shared<ov::op::v0::Constant>(indices_constant->get_element_type(),
indices_constant->get_shape(), indices);
} else {
new_indices_constant = indices_constant;
}
Expand Down

0 comments on commit 5498491

Please sign in to comment.