Skip to content

Commit 4baa57c

Browse files
committed
x64: brgemm 1x1 conv: update brgemm parameters creation for 'reduced_rtus'
1 parent 7ea91b0 commit 4baa57c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cpu/x64/jit_brgemm_1x1_conv.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -134,12 +134,12 @@ status_t brgemm_1x1_convolution_fwd_t<isa>::pd_t::init(engine_t *engine) {
134134
auto vK = is_accum_kernel
135135
? jcp_.rtus_ic_size
136136
: jcp_.ic_without_padding - jcp_.rtus_ic_size;
137+
if (vM <= 0 || vK <= 0) continue;
137138
const bool use_rtus_LDA = is_accum_kernel;
138139
const auto LDA = use_rtus_LDA ? jcp_.rtus_padded_ic_size : jcp_.LDA;
139140
constexpr int extra_m_kernel_start_idx = 2;
140141
brgemm_init_params_.emplace_front(
141142
extra_m_kernel_start_idx + idx, vM, vN, vK, LDA);
142-
assert(vM > 0 && vK > 0);
143143
}
144144
}
145145

0 commit comments

Comments
 (0)