Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FORK][FIX][x64] enable ncx8c->ncx8c support for small input channel in jit sse41 convolution #238

Open
wants to merge 1 commit into
base: v3.3_for_ie_master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/cpu/x64/jit_sse41_conv_kernel_f32.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,7 @@ status_t jit_sse41_conv_fwd_kernel_f32::init_conf(jit_conv_conf_t &jcp,
sum_requires_scale_one, sum_requires_zp_zero));
if (!post_ops_ok_) return status::unimplemented;

const bool flat = one_of(jcp.ic, 1, 2, 3);
const bool flat = one_of(jcp.ic, 1, 2, 3) && (jcp.src_tag != dat_tag_nCx8c);
const bool mimo = !flat;

bool args_ok = true
Expand Down
2 changes: 1 addition & 1 deletion src/cpu/x64/jit_sse41_convolution.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ struct jit_sse41_convolution_fwd_t : public primitive_t {
&& IMPLICATION(curr_dst_tag != dat_tag_nxc,
dst_d.format_kind() == format_kind::any)
&& utils::one_of(dat_tag_nxc, curr_src_tag, curr_dst_tag);
const bool flat = utils::one_of(IC(), 1, 2, 3);
const bool flat = utils::one_of(IC(), 1, 2, 3) && (curr_src_tag != dat_tag_nCx8c);
auto src_tag = is_data_layout_nxc ? dat_tag_nxc
: flat ? dat_tag_ncx
: dat_tag_nCx8c;
Expand Down