[dpdk-dev] [PATCH v3 0/8] Support vector instructions on ICE

Wenzhuo Lu wenzhuo.lu at intel.com
Fri Mar 15 07:22:47 CET 2019


Use SSE and AVX2 instructions in ICE RX and TX path.

---
v2:
 - Updated feature doc.
 - Fixed checklog and checkpatch issues.

v3:
 - Fixed potential compile issue on non-X86 platform.

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             | 105 ++++-
 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, 2005 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

-- 
1.9.3



More information about the dev mailing list