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 37EE2A04B5; Wed, 13 Jan 2021 10:53:43 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id EF00E140EAA; Wed, 13 Jan 2021 10:53:41 +0100 (CET) Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by mails.dpdk.org (Postfix) with ESMTP id DA3F5140EA5 for ; Wed, 13 Jan 2021 10:53:40 +0100 (CET) IronPort-SDR: Sr+5x4SKyb/WLmushduGV9MBdlpYJmdgrAM8kEflpDiEjx1diyZkn8XrOfEKJTeGloE6ZeuU/w ED0GAoA8wK9A== X-IronPort-AV: E=McAfee;i="6000,8403,9862"; a="178271541" X-IronPort-AV: E=Sophos;i="5.79,344,1602572400"; d="scan'208";a="178271541" Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by orsmga103.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 13 Jan 2021 01:53:39 -0800 IronPort-SDR: LT9v6cRkg4jXI4o8gygnYAYY62uVuSgAnGmyfBII6wI/Q7fYYqym+NUWXhKLmVcFZqnQX25qOO OmAJi+XP+2MQ== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.79,344,1602572400"; d="scan'208";a="404771410" Received: from irsmsx605.ger.corp.intel.com ([163.33.146.138]) by FMSMGA003.fm.intel.com with ESMTP; 13 Jan 2021 01:53:39 -0800 Received: from shsmsx601.ccr.corp.intel.com (10.109.6.141) by IRSMSX605.ger.corp.intel.com (163.33.146.138) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.1713.5; Wed, 13 Jan 2021 09:53:37 +0000 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; Wed, 13 Jan 2021 17:53:35 +0800 From: "Zhang, Qi Z" To: "Rong, Leyi" , "Richardson, Bruce" , "Xing, Beilei" CC: "dev@dpdk.org" Thread-Topic: [PATCH v2 0/3] AVX512 vPMD on i40e Thread-Index: AQHW5MuVgPP1DiKzmEOpaATAP7EXY6olWe8A Date: Wed, 13 Jan 2021 09:53:35 +0000 Message-ID: References: <20201215021945.103396-1-leyi.rong@intel.com> <20210107074420.6335-1-leyi.rong@intel.com> In-Reply-To: <20210107074420.6335-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 v2 0/3] AVX512 vPMD on i40e 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 Sender: "dev" > -----Original Message----- > From: Rong, Leyi > Sent: Thursday, January 7, 2021 3:44 PM > To: Zhang, Qi Z ; Richardson, Bruce > ; Xing, Beilei > Cc: dev@dpdk.org; Rong, Leyi > Subject: [PATCH v2 0/3] AVX512 vPMD on i40e >=20 > This patchset aims to support AVX512 vPMD on i40e. > And the changes are only target to AVX512 vector path. >=20 > --- > v2: > - Add return value check on rte_mempool_default_cache(). >=20 > Leyi Rong (3): > net/i40e: remove devarg use-latest-supported-vec > net/i40e: add AVX512 vector path > net/i40e: optimize Tx by using AVX512 >=20 > doc/guides/nics/i40e.rst | 9 - > drivers/net/i40e/i40e_ethdev.c | 63 +- > drivers/net/i40e/i40e_ethdev.h | 3 - > drivers/net/i40e/i40e_rxtx.c | 193 ++-- > drivers/net/i40e/i40e_rxtx.h | 13 + > drivers/net/i40e/i40e_rxtx_vec_avx512.c | 1136 > +++++++++++++++++++++++ > drivers/net/i40e/meson.build | 24 + > 7 files changed, 1293 insertions(+), 148 deletions(-) create mode 10064= 4 > drivers/net/i40e/i40e_rxtx_vec_avx512.c >=20 > -- > 2.17.1 Applied to dpdk-next-net-intel. Thanks Qi