Skip to content

Commit 3b9411d

Browse files
dmitry-gorokhovxczhai
authored andcommitted
[FIX] Corrected debug assertion in create_brgemm_matmul_copy_b routine
1 parent 304e48f commit 3b9411d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cpu/x64/matmul/brgemm_matmul_copy_utils.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -4667,7 +4667,7 @@ status_t create_brgemm_matmul_copy_b(
46674667
CHECK(safe_ptr_assign(copy_ker,
46684668
new jit_brgemm_matmul_copy_b_transposed_t<Zmm>(conf)));
46694669
else {
4670-
assert(is_superset(conf->isa, avx2));
4670+
assert(is_superset(conf->isa, avx2, avx2_vnni, avx2_vnni_2));
46714671
CHECK(safe_ptr_assign(copy_ker,
46724672
new jit_brgemm_matmul_copy_b_transposed_t<Ymm>(conf)));
46734673
}

0 commit comments

Comments
 (0)