From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 72156A04DE; Fri, 23 Oct 2020 11:39:44 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 70DE1A92C; Fri, 23 Oct 2020 11:39:22 +0200 (CEST) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by dpdk.org (Postfix) with ESMTP id 686E9A92C for ; Fri, 23 Oct 2020 11:39:19 +0200 (CEST) IronPort-SDR: Q1Bf9PmYUwNA+xsNoddgb/CF2FeIPKW634DWDpkGFVOr1kp1sCBL/uLvzTTgOIN1fQ2ClnNeXn 4qpu97gp49rg== X-IronPort-AV: E=McAfee;i="6000,8403,9782"; a="185349028" X-IronPort-AV: E=Sophos;i="5.77,407,1596524400"; d="scan'208";a="185349028" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 23 Oct 2020 02:39:14 -0700 IronPort-SDR: oaRJSJ/Hfvb6/O5tUFmG0ZE90kNgX1e5kGkAnKPg85MQ9ItUDtnNIh0h6vf2kwFiW8gmzjdPFS 1kGnad9cj8Dg== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.77,407,1596524400"; d="scan'208";a="360174665" Received: from fmsmsx604.amr.corp.intel.com ([10.18.126.84]) by orsmga007.jf.intel.com with ESMTP; 23 Oct 2020 02:39:14 -0700 Received: from shsmsx602.ccr.corp.intel.com (10.109.6.142) by fmsmsx604.amr.corp.intel.com (10.18.126.84) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.1713.5; Fri, 23 Oct 2020 02:39:12 -0700 Received: from shsmsx601.ccr.corp.intel.com (10.109.6.141) by SHSMSX602.ccr.corp.intel.com (10.109.6.142) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.1713.5; Fri, 23 Oct 2020 17:39:11 +0800 Received: from shsmsx601.ccr.corp.intel.com ([10.109.6.141]) by SHSMSX601.ccr.corp.intel.com ([10.109.6.141]) with mapi id 15.01.1713.004; Fri, 23 Oct 2020 17:39:11 +0800 From: "Zhang, Qi Z" To: "Rong, Leyi" , "Lu, Wenzhuo" , "burce.richardson@intel.com" CC: "dev@dpdk.org" Thread-Topic: [PATCH v4 0/3] AVX512 vPMD on ice Thread-Index: AQHWqPYZjc/Trw4GqUOzLSeUUxLV8qmk7q8w Date: Fri, 23 Oct 2020 09:39:10 +0000 Message-ID: References: <20200910065504.104217-1-leyi.rong@intel.com> <20201023041407.20442-1-leyi.rong@intel.com> In-Reply-To: <20201023041407.20442-1-leyi.rong@intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: dlp-reaction: no-action dlp-version: 11.5.1.3 dlp-product: dlpe-windows x-originating-ip: [10.239.127.36] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v4 0/3] AVX512 vPMD on ice X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" > -----Original Message----- > From: Rong, Leyi > Sent: Friday, October 23, 2020 12:14 PM > To: Zhang, Qi Z ; Lu, Wenzhuo > ; burce.richardson@intel.com > Cc: dev@dpdk.org; Rong, Leyi > Subject: [PATCH v4 0/3] AVX512 vPMD on ice >=20 > This patchset aims to support AVX512 vPMD on ice. >=20 > --- > v4: > - Replace buf_physaddr by buf_iova in the 1st patch to eliminate build > error. >=20 > v3: > - Code rebased. >=20 > v2: > - No internal judgement when RTE_MACHINE_CPUFLAG_AVX512F is set in > meson.build. > - Add RSS hash parsing as default RXDID is set to #22. > - Use buf_iova instead of buf_physaddr, as buf_physaddr will be removed. >=20 > Leyi Rong (3): > net/ice: add AVX512 vector path > net/ice: add RSS hash parsing in AVX512 path > net/ice: optimize Tx path on AVX512 vPMD >=20 > drivers/net/ice/ice_rxtx.c | 90 ++- > drivers/net/ice/ice_rxtx.h | 11 + > drivers/net/ice/ice_rxtx_vec_avx512.c | 1018 +++++++++++++++++++++++++ > drivers/net/ice/ice_rxtx_vec_common.h | 36 +- > drivers/net/ice/meson.build | 11 + > 5 files changed, 1141 insertions(+), 25 deletions(-) create mode 100644 > drivers/net/ice/ice_rxtx_vec_avx512.c >=20 > -- > 2.17.1 Acked-by: Qi Zhang Applied to dpdk-next-net-intel. Thanks Qi