Skip to content

Commit c563f8e

Browse files
committed
cpu: x64: brgconv_bwd_strided: limit bias to f32 only for f32 config
1 parent 9f3ff80 commit c563f8e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/cpu/x64/jit_brgemm_conv_bwd_strided.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,8 @@ status_t brgemm_convolution_bwd_strided_t<isa>::pd_t::init(engine_t *engine) {
9191
| skip_mask_t::zero_points_runtime;
9292

9393
const bool is_f32_supported
94-
= everyone_is(f32, diff_src_type, wei_type, diff_dst_type);
94+
= everyone_is(f32, diff_src_type, wei_type, diff_dst_type)
95+
&& IMPLICATION(with_bias(), bias_md_.data_type == f32);
9596

9697
const bool is_xf16_supported = one_of(wei_type, bf16, f16)
9798
&& wei_type == diff_dst_type && one_of(diff_src_type, wei_type, f32)

0 commit comments

Comments
 (0)