Skip to content

Commit

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

// input to matmul is decompression Convert
const auto& inp_convert = node->input_value(1).get_node_shared_ptr();
if (!is_type<ov::op::v0::Convert>(inp_convert) || inp_convert->get_output_target_inputs(0).size() != 1 || !is_decompression(inp_convert))
if (!is_type<ov::op::v0::Convert>(inp_convert) || inp_convert->get_output_target_inputs(0).size() != 1 ||
!is_decompression(inp_convert))
return false;

disable_constant_folding(inp_convert);
Expand Down

0 comments on commit f69fbc6

Please sign in to comment.