From patchwork Mon Mar 4 06:53:20 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Wenzhuo Lu X-Patchwork-Id: 50772 Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 042582C18; Mon, 4 Mar 2019 07:48:11 +0100 (CET) Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by dpdk.org (Postfix) with ESMTP id 9209B1DBE for ; Mon, 4 Mar 2019 07:48:09 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga008.fm.intel.com ([10.253.24.58]) by fmsmga104.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 03 Mar 2019 22:48:08 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.58,439,1544515200"; d="scan'208";a="128778840" Received: from dpdk26.sh.intel.com ([10.67.110.164]) by fmsmga008.fm.intel.com with ESMTP; 03 Mar 2019 22:48:07 -0800 From: Wenzhuo Lu To: dev@dpdk.org Cc: Wenzhuo Lu Date: Mon, 4 Mar 2019 14:53:20 +0800 Message-Id: <1551682408-107569-1-git-send-email-wenzhuo.lu@intel.com> X-Mailer: git-send-email 1.9.3 In-Reply-To: <1551340136-83843-1-git-send-email-wenzhuo.lu@intel.com> References: <1551340136-83843-1-git-send-email-wenzhuo.lu@intel.com> Subject: [dpdk-dev] [PATCH v2 0/8] Support vector instructions 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" Use SSE and AVX2 instructions in ICE RX and TX path. --- v2: - Updated feature doc. - Fixed checklog and checkpatch issues. Wenzhuo Lu (8): net/ice: fix Tx function setting net/ice: add pointer for queue buffer release net/ice: support vector SSE in RX net/ice: support Rx scatter SSE vector net/ice: support Tx SSE vector net/ice: support Rx AVX2 vector net/ice: support Rx scatter AVX2 vector net/ice: support vector AVX2 in TX config/common_base | 1 + doc/guides/nics/features/ice_vec.ini | 35 ++ doc/guides/rel_notes/release_19_05.rst | 4 + drivers/net/ice/Makefile | 22 + drivers/net/ice/ice_ethdev.c | 3 +- drivers/net/ice/ice_ethdev.h | 2 + drivers/net/ice/ice_rxtx.c | 101 +++- drivers/net/ice/ice_rxtx.h | 39 ++ drivers/net/ice/ice_rxtx_vec_avx2.c | 835 +++++++++++++++++++++++++++++++++ drivers/net/ice/ice_rxtx_vec_common.h | 288 ++++++++++++ drivers/net/ice/ice_rxtx_vec_sse.c | 663 ++++++++++++++++++++++++++ drivers/net/ice/meson.build | 21 + 12 files changed, 2001 insertions(+), 13 deletions(-) create mode 100644 doc/guides/nics/features/ice_vec.ini create mode 100644 drivers/net/ice/ice_rxtx_vec_avx2.c create mode 100644 drivers/net/ice/ice_rxtx_vec_common.h create mode 100644 drivers/net/ice/ice_rxtx_vec_sse.c