Skip to content

Commit

Permalink
[Snippets][CPU] Removed check from callback
Browse files Browse the repository at this point in the history
  • Loading branch information
a-sidorova committed Sep 19, 2024
1 parent dfae269 commit 9cc4fc7
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -974,9 +974,6 @@ void Transformations::MainSnippets(void) {
return false;
if (is_fp32)
return true;
// Only FP32 dynamic MHA is supported
if (matmul->is_dynamic())
return false;
// [114487] brgemm kernel in oneDNN requires brgemm_copy_b kernel if MatMul node has transposed_b=True
// The current solution with ExtractExplicitMatMulTranspose pass is slower for non-f32 cases than using of brgemm_copy_b kernel
if (matmul->get_transpose_a() || matmul->get_transpose_b())
Expand Down

0 comments on commit 9cc4fc7

Please sign in to comment.