From patchwork Mon Feb 6 03:41:23 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Wenjun Wu X-Patchwork-Id: 123066 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 BAFA541BE4; Mon, 6 Feb 2023 04:33:11 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id A50A140A7D; Mon, 6 Feb 2023 04:33:11 +0100 (CET) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by mails.dpdk.org (Postfix) with ESMTP id CCC69406A2 for ; Mon, 6 Feb 2023 04:33:10 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1675654391; x=1707190391; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=9KGy1pJPSxDidnoaZmZuChwSpo5KWcTy+/dB3YSVo64=; b=Hz/1ZnBsZktOlRPTtzd5/D9yMKyMH4pq5KiOyEgLDM93tvEikOtDuGRS b7ywo19nHZ9UQfdgJXMBYJVy7HNZ/byVorLGX86cZc1jeP0FuqN0DFygM 8/Qj3VqEjJ4ddZQ54kA05Qf17V7crdWSS3SZR3zp+1XkXLKVeJKVEfRwS geoynSDZS16vnuQrrX5tuohSD7CNV/SLGMqrYQXoykpxGNGZ8EDm3IpG0 vUje1nLnLf9SjcZdjIpUfHyZOXGK/nOqKIuiYetl4iwoCACbUlOWfWJ3f am+RXCf373Taa5XAvPIoHi7l/Wsgs4uStPMfc0GyyqV+h77coK3X1BidV Q==; X-IronPort-AV: E=McAfee;i="6500,9779,10612"; a="317132497" X-IronPort-AV: E=Sophos;i="5.97,276,1669104000"; d="scan'208";a="317132497" Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by orsmga101.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 05 Feb 2023 19:33:09 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6500,9779,10612"; a="995137862" X-IronPort-AV: E=Sophos;i="5.97,276,1669104000"; d="scan'208";a="995137862" Received: from dpdk-wuwenjun-icelake-ii.sh.intel.com ([10.67.110.153]) by fmsmga005.fm.intel.com with ESMTP; 05 Feb 2023 19:33:08 -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 v9 0/1] Add support AVX512 split queue datapath Date: Mon, 6 Feb 2023 03:41:23 +0000 Message-Id: <20230206034124.1915756-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/cover/20230117080622.105657-1-beilei.xing@intel.com/ 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. 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 | 797 +++++++++++++++++- 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, 938 insertions(+), 53 deletions(-)