Skip to content

Commit af23f69

Browse files
nivas-x86tprimak
authored andcommitted
fixup: gemm bf16: fix dst offset for f32 datatype
1 parent 9b7383b commit af23f69

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cpu/x64/gemm_bf16_convolution.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -585,7 +585,7 @@ status_t gemm_bf16_convolution_fwd_t<dst_data_type>::execute_forward_ncsp(
585585
dst_data_t *_dst_im
586586
= dst + (n * jcp.ngroups + g) * dst_step + oc * M;
587587
auto out_off = nb_os * jcp.os_block + od * jcp.os;
588-
dst_data_t *dst_local = dst + out_off;
588+
dst_data_t *dst_local = _dst_im + out_off;
589589
const int sizeof_cacheline_float = 16;
590590
acc_data_t *_acc = is_bf16_dst ? acc_base
591591
+ ithr

0 commit comments

Comments
 (0)