Skip to content

Commit

Permalink
src: cpu: x64: jit_brdgmm_dw_conw: make brdgmm support fusing sum op
Browse files Browse the repository at this point in the history
  • Loading branch information
amakarev committed Jan 3, 2025
1 parent 43822b2 commit 5d7c753
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cpu/x64/jit_brdgmm_dw_conv.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -148,8 +148,8 @@ status_t brdgmm_dw_convolution_fwd_t::pd_t::init(engine_t *engine) {
VDISPATCH_CONV(!has_zero_dim_memory(), VERBOSE_EMPTY_TENSOR, "");
VDISPATCH_CONV(
(isa != isa_undef) && mayiuse(isa), "undefined or unsupported isa");
VDISPATCH_CONV(
attr()->has_default_values(skip_mask), VERBOSE_UNSUPPORTED_ATTR);
VDISPATCH_CONV(attr()->has_default_values(skip_mask, dst_type),
VERBOSE_UNSUPPORTED_ATTR);

auto &jcp = jcp_;

Expand Down

0 comments on commit 5d7c753

Please sign in to comment.