We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b7383b commit af23f69Copy full SHA for af23f69
src/cpu/x64/gemm_bf16_convolution.cpp
@@ -585,7 +585,7 @@ status_t gemm_bf16_convolution_fwd_t<dst_data_type>::execute_forward_ncsp(
585
dst_data_t *_dst_im
586
= dst + (n * jcp.ngroups + g) * dst_step + oc * M;
587
auto out_off = nb_os * jcp.os_block + od * jcp.os;
588
- dst_data_t *dst_local = dst + out_off;
+ dst_data_t *dst_local = _dst_im + out_off;
589
const int sizeof_cacheline_float = 16;
590
acc_data_t *_acc = is_bf16_dst ? acc_base
591
+ ithr
0 commit comments