Skip to content

Commit 9427647

Browse files
committed
cpu: x64: matmul: disable parallel_k_reduction for int8
1 parent e28a35a commit 9427647

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/cpu/x64/matmul/brgemm_matmul_utils.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -892,6 +892,7 @@ float compute_blocking_heuristic_avx512(brgemm_matmul_conf_t &bgmmc,
892892
// Parallelize across K for shapes with big 'K' dimension
893893
bool bwd_w_par_k_blk = bgmmc.batch == 1
894894
&& bm_conf_utils.check_is_transposed(bgmmc.src_tag)
895+
&& !bm_conf_utils.is_int8()
895896
&& IMPLICATION(bm_conf_utils.is_bf16(), math::is_pow2(matmul.K))
896897
&& matmul.K >= 2048;
897898
if (bwd_w_par_k_blk) {

0 commit comments

Comments
 (0)