From patchwork Tue Feb 7 08:45:48 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Wenjun Wu X-Patchwork-Id: 123209 Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 20C6A41C2C; Tue, 7 Feb 2023 09:37:48 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id C03D1427F2; Tue, 7 Feb 2023 09:37:47 +0100 (CET) Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by mails.dpdk.org (Postfix) with ESMTP id 76677427E9 for ; Tue, 7 Feb 2023 09:37:45 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1675759065; x=1707295065; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=cVdf/LFaWbNB+1EwOKruvs3zuLfihZmDOszKnwrTY3s=; b=nmplka48/RK8/j+0CJyLvkx+K9FxbgoQm9PjoVyq3eBPrx6SFa1Zuntu rcDuzFeXev77dbeluANX8qbQYanKdAd04iDXmBId6iHfdhPiKKe3SAgm5 +J6We9ixH0UkzBZzJiWgQnJdtD+U7qoUs4tT6glbWL/9G42qGqwTEkkPo ynY5SyjWzMIr7/cQjWxYKDd4fx0oU9bUnTN3Aat3MrClmp3vQ3UOYuN1I HG+n+Ct+Sr6iW/Um3A15hgZ1An+iY82nttVoxTvJRG3WRDoEVh3BVIsn8 6cpecO1vKvIdjTh8mLYY2C+k1/eaypVAlqWYKfeKhTBQTNbWdUxp37ndE w==; X-IronPort-AV: E=McAfee;i="6500,9779,10613"; a="330740927" X-IronPort-AV: E=Sophos;i="5.97,278,1669104000"; d="scan'208";a="330740927" Received: from orsmga005.jf.intel.com ([10.7.209.41]) by orsmga102.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 07 Feb 2023 00:37:39 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6500,9779,10613"; a="840685757" X-IronPort-AV: E=Sophos;i="5.97,278,1669104000"; d="scan'208";a="840685757" Received: from dpdk-wuwenjun-icelake-ii.sh.intel.com ([10.67.110.153]) by orsmga005.jf.intel.com with ESMTP; 07 Feb 2023 00:37:36 -0800 From: Wenjun Wu To: dev@dpdk.org, jingjing.wu@intel.com, beilei.xing@intel.com Cc: mingxia.liu@intel.com, wenzhuo.lu@intel.com, Wenjun Wu Subject: [PATCH v11 0/1] Add support AVX512 split queue datapath Date: Tue, 7 Feb 2023 08:45:48 +0000 Message-Id: <20230207084549.2225214-1-wenjun1.wu@intel.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20221214060706.962541-1-wenjun1.wu@intel.com> References: <20221214060706.962541-1-wenjun1.wu@intel.com> MIME-Version: 1.0 X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org This patchset enables AVX512 data path for split queue model. It is based on the below pathset 1. https://patches.dpdk.org/project/dpdk/list/?series=26809&state=* v3: fix logical error. v4: rebase to the new baseline. v5: fix compilation error. v6: remove unexpected changes. v7: rebase to the new baseline. v8: rebase to the new baseline. add log for datapath function setup. refine precompiled logic. v9: fix coding style issue. v10: rebase to the new baseline. v11: reorder the function definition in version.map in alphabetical order. Wenjun Wu (1): common/idpf: add AVX512 data path for split queue model drivers/common/idpf/idpf_common_rxtx.c | 22 +- drivers/common/idpf/idpf_common_rxtx.h | 21 +- drivers/common/idpf/idpf_common_rxtx_avx512.c | 799 +++++++++++++++++- drivers/common/idpf/version.map | 5 +- drivers/net/idpf/idpf_rxtx.c | 90 +- drivers/net/idpf/idpf_rxtx_vec_common.h | 56 +- 6 files changed, 940 insertions(+), 53 deletions(-) Acked-by: Qi Zhang