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 446CAA04B5; Thu, 10 Sep 2020 09:12:19 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 98D5B1BFB4; Thu, 10 Sep 2020 09:12:18 +0200 (CEST) Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id E2CF41BEB3 for ; Thu, 10 Sep 2020 09:12:16 +0200 (CEST) IronPort-SDR: oG+SoOQozWO550z2Uuv/B5Pe7oiYLgZFU8jr+llNhZwPOfxLmX2jdNENH378z+45JwB72nBtRd qoq2kVQns1tg== X-IronPort-AV: E=McAfee;i="6000,8403,9739"; a="155942592" X-IronPort-AV: E=Sophos;i="5.76,412,1592895600"; d="scan'208";a="155942592" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by fmsmga102.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 10 Sep 2020 00:12:15 -0700 IronPort-SDR: 8GDMg78iIou5zk+6U7xBXnjDU7XvG9FTdw592uT4m2wM4yLJG3pCOMkqCUHPScHxEsBWbSOcLZ 0493hfsZ0BHQ== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.76,412,1592895600"; d="scan'208";a="505023546" Received: from dpdk-lrong-srv-04.sh.intel.com ([10.67.119.221]) by fmsmga006.fm.intel.com with ESMTP; 10 Sep 2020 00:12:14 -0700 From: Leyi Rong To: bruce.richardson@intel.com, wenzhuo.lu@intel.com, qi.z.zhang@intel.com Cc: dev@dpdk.org, Leyi Rong Date: Thu, 10 Sep 2020 14:55:02 +0800 Message-Id: <20200910065504.104217-1-leyi.rong@intel.com> X-Mailer: git-send-email 2.17.1 Subject: [dpdk-dev] [PATCH v1 0/2] 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" This patchset aims to support AVX512 vPMD on ice. Has dependency on http://patches.dpdk.org/cover/76096/ which support SIMD bitwidth selection properly. Leyi Rong (2): net/ice: add AVX512 vector path net/ice: optimize Tx path on AVX512 vPMD drivers/net/ice/ice_rxtx.c | 88 ++- drivers/net/ice/ice_rxtx.h | 11 + drivers/net/ice/ice_rxtx_vec_avx512.c | 927 ++++++++++++++++++++++++++ drivers/net/ice/ice_rxtx_vec_common.h | 36 +- drivers/net/ice/meson.build | 13 + 5 files changed, 1050 insertions(+), 25 deletions(-) create mode 100644 drivers/net/ice/ice_rxtx_vec_avx512.c -- 2.17.1