From d4a0ca9a3bba68a98f2695a890b1d4acf745b7f1 Mon Sep 17 00:00:00 2001 From: Alexey Makarevich Date: Fri, 3 Jan 2025 05:59:00 -0800 Subject: [PATCH] src: cpu: x64: jit_brdgmm_dw_conw: make brdgmm support fusing sum op --- src/cpu/x64/jit_brdgmm_dw_conv.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/cpu/x64/jit_brdgmm_dw_conv.cpp b/src/cpu/x64/jit_brdgmm_dw_conv.cpp index 75a9481b2a8..ccf6817aec6 100644 --- a/src/cpu/x64/jit_brdgmm_dw_conv.cpp +++ b/src/cpu/x64/jit_brdgmm_dw_conv.cpp @@ -1,5 +1,5 @@ /******************************************************************************* -* Copyright 2021-2024 Intel Corporation +* Copyright 2021-2025 Intel Corporation * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -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_;