From 507cd09559849d4cf2a36e00d2a88ba5875e7938 Mon Sep 17 00:00:00 2001 From: ruiqi Date: Fri, 10 Feb 2023 15:45:43 +0800 Subject: [PATCH] Delete 3D depthwise unimplemented judgments --- src/cpu/x64/jit_avx512_core_x8s8s32x_conv_kernel.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/cpu/x64/jit_avx512_core_x8s8s32x_conv_kernel.cpp b/src/cpu/x64/jit_avx512_core_x8s8s32x_conv_kernel.cpp index 8c0083b14a8..699b9335637 100644 --- a/src/cpu/x64/jit_avx512_core_x8s8s32x_conv_kernel.cpp +++ b/src/cpu/x64/jit_avx512_core_x8s8s32x_conv_kernel.cpp @@ -1472,10 +1472,6 @@ status_t jit_avx512_core_x8s8s32x_fwd_kernel::init_conf(jit_conv_conf_t &jcp, jcp.isa = mayiuse(avx512_core_bf16) ? avx512_core_bf16 : bf16_emulation_t::get_isa(); - if (jcp.is_depthwise && is_3d) - // NOTE: 3D depthwise is not currently supported here. - return status::unimplemented; - jcp.with_input_zp = !attr.input_zero_points_.has_default_values(); jcp.with_weights_zp = !attr.weights_zero_points_.has_default_values();