From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ferruh Yigit Subject: Re: [PATCH v3 8/8] net/ice: support vector AVX2 in TX Date: Fri, 15 Mar 2019 17:54:31 +0000 Message-ID: References: <1551340136-83843-1-git-send-email-wenzhuo.lu@intel.com> <1552630975-62900-1-git-send-email-wenzhuo.lu@intel.com> <1552630975-62900-9-git-send-email-wenzhuo.lu@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit To: Wenzhuo Lu , dev@dpdk.org, Qi Zhang Return-path: Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) by dpdk.org (Postfix) with ESMTP id A563A2C24 for ; Fri, 15 Mar 2019 18:54:34 +0100 (CET) In-Reply-To: <1552630975-62900-9-git-send-email-wenzhuo.lu@intel.com> Content-Language: en-US List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On 3/15/2019 6:22 AM, Wenzhuo Lu wrote: > Signed-off-by: Wenzhuo Lu > --- > doc/guides/rel_notes/release_19_05.rst | 4 + > drivers/net/ice/ice_rxtx.c | 13 ++- > drivers/net/ice/ice_rxtx.h | 2 + > drivers/net/ice/ice_rxtx_vec_avx2.c | 158 +++++++++++++++++++++++++++++++++ > 4 files changed, 175 insertions(+), 2 deletions(-) > > diff --git a/doc/guides/rel_notes/release_19_05.rst b/doc/guides/rel_notes/release_19_05.rst > index 61a2c73..610c4cd 100644 > --- a/doc/guides/rel_notes/release_19_05.rst > +++ b/doc/guides/rel_notes/release_19_05.rst > @@ -91,6 +91,10 @@ New Features > > * Added promiscuous mode support. > > +* **Added support of vector instructions on ICE.** > + > + Added support of SSE and AVX2 instructions in ICE RX and TX path. > + ice documentation doesn't have any information about vector path, can you please update it? I think it can be good to document when vector path is used? How to decide scalar, sse or avx to use? What will prevent using vector path, like any offload or any specific config? Thanks, ferruh