Skip to content

Commit

Permalink
cpu: x64: brdgmm: add f32 bias support
Browse files Browse the repository at this point in the history
  • Loading branch information
dzarukin committed Jan 10, 2025
1 parent 7b19b51 commit c907431
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/cpu/x64/jit_brdgmm_dw_conv.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -139,9 +139,9 @@ status_t brdgmm_dw_convolution_fwd_t::pd_t::init(engine_t *engine) {
IMPLICATION(is_int8,
one_of(bia_type, data_type::undef, f32, s32, s8, u8)),
VERBOSE_UNSUPPORTED_BIAS_CFG);
VDISPATCH_CONV(
IMPLICATION(!is_int8,
one_of(bia_type, data_type::undef, src_type, dst_type)),
VDISPATCH_CONV(IMPLICATION(!is_int8,
one_of(bia_type, data_type::undef, data_type::f32,
src_type, dst_type)),
VERBOSE_UNSUPPORTED_BIAS_CFG);
VDISPATCH_CONV(set_default_alg_kind(alg_kind::convolution_direct),
VERBOSE_BAD_ALGORITHM);
Expand Down

0 comments on commit c907431

Please sign in to comment.