From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 2955D46148; Thu, 30 Jan 2025 09:11:44 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id C2B5340275; Thu, 30 Jan 2025 09:11:43 +0100 (CET) Received: from mgamail.intel.com (mgamail.intel.com [192.198.163.14]) by mails.dpdk.org (Postfix) with ESMTP id 67CBC40156 for ; Thu, 30 Jan 2025 09:11:42 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1738224703; x=1769760703; h=from:to:subject:date:message-id:in-reply-to:references: mime-version:content-transfer-encoding; bh=1wJ/Hrffu5O2aAoX6Zbd8YdmylID847E5Kchsxk41G0=; b=PR9J4iq2nyyGxMax0+lR0WbmRKxjAtmZTHhuqhli4d0TKqtK9VlWr1HU gWLg993hgw78wEUgDKOq7LgT//1FPX8n0ZhX08ZiDlp85fCKftZ70IlA3 sn5LXHRxHWNyNZaAGL0QKh1Dm+BUhVwbx7ip4vKlapRboNJz5NHUM4hFZ VZIIZtAHf/N9R0GIAZ9F1zvOTFgwpcLVwYTMY8fSPbDak/TvG1pL1U22F mRGCKVMLitEaW8jAHq3Z/vTTCJGmfOAZbFvb3J0qNQVlYVCrheYA0Qk2F QweDBsEg3z67Ft1jfYQq/UimsuJH1ZmqnEtWWz2j7Zd8Uk3TyIhONPfHk A==; X-CSE-ConnectionGUID: U9wrH/PYSw2LiRwLKGmLVA== X-CSE-MsgGUID: ejavEqnuQ2y3K7bhrMKU2A== X-IronPort-AV: E=McAfee;i="6700,10204,11330"; a="39026009" X-IronPort-AV: E=Sophos;i="6.13,244,1732608000"; d="scan'208";a="39026009" Received: from orviesa002.jf.intel.com ([10.64.159.142]) by fmvoesa108.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 30 Jan 2025 00:11:42 -0800 X-CSE-ConnectionGUID: JIPP0BdVT3q3sxX+IupaHg== X-CSE-MsgGUID: VoByeegYQZqqjAcahtYiPA== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.13,244,1732608000"; d="scan'208";a="140156721" Received: from npg-npf-wlpr-srv12.iind.intel.com ([10.190.212.205]) by orviesa002.jf.intel.com with ESMTP; 30 Jan 2025 00:11:40 -0800 From: Shaiq Wani To: dev@dpdk.org, bruce.richardson@intel.com, aman.deep.singh@intel.com Subject: [PATCH v3 0/2] enable AVX2 for single queue Rx/Tx Date: Thu, 30 Jan 2025 13:54:43 +0530 Message-Id: <20250130082445.1112043-1-shaiq.wani@intel.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20250129121856.1040065-2-shaiq.wani@intel.com> References: <20250129121856.1040065-2-shaiq.wani@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 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 v3: - Addressed review comments. - Updated doc. - Merged patch 3 into patch 2. Shaiq Wani (2): common/idpf: enable AVX2 for single queue Rx common/idpf: enable AVX2 for single queue Tx doc/guides/nics/idpf.rst | 8 +- doc/guides/rel_notes/release_25_03.rst | 7 + drivers/common/idpf/idpf_common_device.h | 2 + drivers/common/idpf/idpf_common_rxtx.h | 8 + drivers/common/idpf/idpf_common_rxtx_avx2.c | 709 ++++++++++++++++++++ drivers/common/idpf/meson.build | 7 + drivers/common/idpf/version.map | 2 + drivers/net/intel/idpf/idpf_rxtx.c | 24 + 8 files changed, 764 insertions(+), 3 deletions(-) create mode 100644 drivers/common/idpf/idpf_common_rxtx_avx2.c -- 2.34.1