Skip to content

Commit

Permalink
codestyle
Browse files Browse the repository at this point in the history
  • Loading branch information
v-Golubev committed Sep 10, 2024
1 parent 0f23578 commit 1abc205
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,8 @@ pass::MatMulMultiplyFusion::MatMulMultiplyFusion() {
auto input_pattern = pattern::any_input();
auto weights_pattern = pattern::any_input(pattern::has_static_rank());
auto mul_const_pattern = pattern::wrap_type<ov::op::v0::Constant>();
auto matmul_pattern = pattern::wrap_type<ov::op::v0::MatMul>({input_pattern, weights_pattern}, pattern::consumers_count(1));
auto matmul_pattern =
pattern::wrap_type<ov::op::v0::MatMul>({input_pattern, weights_pattern}, pattern::consumers_count(1));
auto mul_pattern = pattern::wrap_type<ov::op::v1::Multiply>({matmul_pattern, mul_const_pattern});

matcher_pass_callback callback = [OV_CAPTURE_CPY_AND_THIS](pattern::Matcher& m) {
Expand Down

0 comments on commit 1abc205

Please sign in to comment.