diff --git a/src/plugins/intel_cpu/src/nodes/bin_conv.cpp b/src/plugins/intel_cpu/src/nodes/bin_conv.cpp index 534a57112249d7..025a3e112c47ec 100644 --- a/src/plugins/intel_cpu/src/nodes/bin_conv.cpp +++ b/src/plugins/intel_cpu/src/nodes/bin_conv.cpp @@ -1201,7 +1201,7 @@ void BinaryConvolution::createPrimitive() { std::make_shared>(jcp, jcp_dw_conv, *attr.get()); } else if (implType == impl_desc_type::jit_avx2) { bin_conv_kernel = std::make_shared>(jcp, jcp_dw_conv, *attr.get()); - } else if (implType == impl_desc_type::sse42) { + } else if (implType == impl_desc_type::jit_sse42) { bin_conv_kernel = std::make_shared>(jcp, jcp_dw_conv, *attr.get()); } if (bin_conv_kernel) {