Skip to content

Commit

Permalink
cpu: x64: conv: remove unused variable
Browse files Browse the repository at this point in the history
  • Loading branch information
aaraujom authored and vpirogov committed Sep 9, 2022
1 parent 207af06 commit b4e0032
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/cpu/x64/jit_avx512_core_bf16_conv_kernel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1698,12 +1698,6 @@ status_t jit_avx512_core_bf16_bwd_data_kernel::init_conf(jit_conv_conf_t &jcp,
reserved */
int l_overflow = nstl::max(
0, ((jcp.kw - 1) * (jcp.dilate_w + 1) - jcp.l_pad) / jcp.stride_w);
int r_overflow1 = nstl::max(0,
((jcp.kw - 1) * (jcp.dilate_w + 1)
- nstl::max(0, jcp.r_pad + jcp.iw % jcp.ur_w))
/ jcp.stride_w);
int n_oi = jcp.iw / jcp.ur_w;
if (r_overflow1 > 0) n_oi--;

jcp.typesize_in = types::data_type_size(diff_dst_d.data_type());
jcp.typesize_out = types::data_type_size(diff_src_d.data_type());
Expand Down

0 comments on commit b4e0032

Please sign in to comment.