From patchwork Tue Feb 7 02:11:15 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Wenjun Wu X-Patchwork-Id: 123186 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 ED52741C27; Tue, 7 Feb 2023 03:03:07 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 7BDFA40EF0; Tue, 7 Feb 2023 03:03:07 +0100 (CET) Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by mails.dpdk.org (Postfix) with ESMTP id 8F4BB406A2 for ; Tue, 7 Feb 2023 03:03:05 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1675735385; x=1707271385; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=BBkEBy+nBes6Rh+h5ffm+xgB4OvW5rtNFwIqEz90jNs=; b=L7RD6iF/QBC+h1qj71p6BWUu+WQY1+B7Y6jnHGy13nIQiSpaJctZMCCe vDqSFfeNePF/7Jwm/EDhR+sowJbqNG2FD6+wpkPMjEKnei8Erp7hkdhHu GmX/KbXh0+0VH06Xn96TiIfdFrx981KrMqDZUa+ugRuXGLHZshE2SxnPs MK1dlmiKLWlvzMKgF22L5HIagfco/Xaz0BXKi5EEd/lG1lko4QspKqTBC KFyLNeLG6veGNtgOAzhO6omQJ3mN/eKtYWaMHM+N0gJ12jLw44XIk5150 a1OHB6UMa4zPKjcYV0Vukg57dwtAUCWpIuAL+XDLe/wB3gSNZdBBYI+Ek A==; X-IronPort-AV: E=McAfee;i="6500,9779,10613"; a="393975397" X-IronPort-AV: E=Sophos;i="5.97,278,1669104000"; d="scan'208";a="393975397" Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by orsmga105.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 06 Feb 2023 18:03:04 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6500,9779,10613"; a="995553133" X-IronPort-AV: E=Sophos;i="5.97,278,1669104000"; d="scan'208";a="995553133" Received: from dpdk-wuwenjun-icelake-ii.sh.intel.com ([10.67.110.153]) by fmsmga005.fm.intel.com with ESMTP; 06 Feb 2023 18:03:01 -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 v10 0/1] Add support AVX512 split queue datapath Date: Tue, 7 Feb 2023 02:11:15 +0000 Message-Id: <20230207021116.2005193-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. 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(-)