Skip to content

Commit

Permalink
src: cpu: gemm: u8 grouped convolution fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
Alok Bakshi committed Sep 27, 2019
1 parent f4c189c commit 878ac2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cpu/gemm_x8s8s32x_convolution.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -612,7 +612,7 @@ execute_forward_thr(const int ithr, const int nthr, const src_data_t *src_base,
const int K = jcp.ks * jcp.ic;
const int N = h_step * w_step;
const int LDA = M * jcp.ngroups;
const int LDB = jcp.im2col_sz ? N : K;
const int LDB = jcp.im2col_sz ? N : K * jcp.ngroups;
const char *BT = jcp.im2col_sz ? "T" : "N";
const int8_t off_a = 0, off_b = 0;
const int32_t off_c = 0;
Expand Down

0 comments on commit 878ac2d

Please sign in to comment.