DPDK patches and discussions
 help / color / mirror / Atom feed
From: "Varghese, Vipin" <Vipin.Varghese@amd.com>
To: David Marchand <david.marchand@redhat.com>,
	Bruce Richardson <bruce.richardson@intel.com>
Cc: "dev@dpdk.org" <dev@dpdk.org>
Subject: RE: [PATCH v5 00/11] remove component-specific logic for AVX builds
Date: Mon, 9 Jun 2025 05:31:25 +0000	[thread overview]
Message-ID: <PH7PR12MB8596A2F5F6F979FF88D54C53826BA@PH7PR12MB8596.namprd12.prod.outlook.com> (raw)
In-Reply-To: <CAJFAV8zhNmSujARaW+UfFt2hn_szBqTZiCJoBqymOEGxvfWtwQ@mail.gmail.com>

[Public]

Snipped

> >
> > A number of libs and drivers had special optimized AVX2 and AVX512
> > code paths for performance reasons, and these tended to have
> > copy-pasted logic to build those files. Centralise that logic in the
> > main drivers/ and lib/ meson.build files to avoid duplication.
> >
> > v5: fix RTE_ARCH_X86 macro, which broke crc library
> > v4: rebase on latest main branch
> >     minor fixes following feedback
> >     limit use of -march=skylake-avx512 to when we don't already have a
> >       -march flag supporting AVX512.
> > v3: add patch for event/dlb2 AVX512 handling.
> >     add common code for libraries as well as drivers.
> > v2: add patch 4 to remove use of unnecessary CC_AVX2_SUPPORT flag
> >
> >
> > Bruce Richardson (11):
> >   drivers: add generalized AVX build handling
> >   net/intel: use common AVX build code
> >   drivers/net: build use common AVX handling
> >   drivers/net: remove AVX2 build-time define
> >   event/dlb2: build using common AVX handling
> >   lib: add generalized AVX build handling
> >   acl: use common AVX build handling
> >   fib: use common AVX build handling
> >   net: simplify build-time logic for x86
> >   net: use common AVX512 build code
> >   member: use common AVX512 build support
> >
> >  drivers/event/dlb2/dlb2_sse.c         |  4 ++
> >  drivers/event/dlb2/meson.build        | 16 +-------
> >  drivers/meson.build                   | 30 ++++++++++++++
> >  drivers/net/bnxt/bnxt_ethdev.c        |  2 -
> >  drivers/net/bnxt/meson.build          | 10 +----
> >  drivers/net/enic/meson.build          | 10 +----
> >  drivers/net/intel/i40e/meson.build    | 26 +-----------
> >  drivers/net/intel/iavf/meson.build    | 25 +-----------
> >  drivers/net/intel/ice/meson.build     | 25 +-----------
> >  drivers/net/intel/idpf/meson.build    | 25 +-----------
> >  drivers/net/nfp/meson.build           | 10 +----
> >  drivers/net/octeon_ep/meson.build     | 13 +-----
> >  drivers/net/octeon_ep/otx_ep_ethdev.c |  4 --
> >  drivers/net/virtio/meson.build        |  9 +----
> >  lib/acl/meson.build                   | 54 ++-----------------------
> >  lib/fib/dir24_8.c                     |  6 +--
> >  lib/fib/meson.build                   | 18 +--------
> >  lib/fib/trie.c                        |  6 +--
> >  lib/member/meson.build                | 46 ++++-----------------
> >  lib/meson.build                       | 34 +++++++++++++++-
> >  lib/net/meson.build                   | 58 +++------------------------
> >  lib/net/rte_net_crc.c                 | 16 ++++----
> >  22 files changed, 114 insertions(+), 333 deletions(-)
>
> Thank you Bruce, this series lgtm.

Series-Reviewed-by: vipin.varghese@amd.com
Series-Tested-by: Thiyagarajan.P@amd.com

Tested on:
SUT 1 & 2: AMD EPYC 8534P 64-Core Processor
CPU : AVX-512 Enabled, Turbo Boost disabled and NPS-1
NIC: Intel E810-CQDA2
DPDK version: v25.03
Traffic generator: Pktgen-23.06.1.
Number of Ports: 2
Total Speed: 200G.
Patch apply: 11 patches.

Testcase: testpmd io & l3fwd
Test scenario: 2C2T–2 Ports–1Rx1Tx scenario(64B and 128B buffer sizes).
Sumamry: On comparing the results with and without patch apply for both testpmd-io and l3fwd, the delta was less than 1%.




>
>
> --
> David Marchand


      reply	other threads:[~2025-06-09  5:31 UTC|newest]

Thread overview: 67+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-03-14 17:23 [PATCH 0/3] remove driver-specific " Bruce Richardson
2025-03-14 17:23 ` [PATCH 1/3] build: add generalized AVX handling for drivers Bruce Richardson
2025-03-14 17:23 ` [PATCH 2/3] net/intel: use common AVX build code Bruce Richardson
2025-03-14 17:23 ` [PATCH 3/3] drivers/net: build use common AVX handling Bruce Richardson
2025-03-14 17:31   ` David Marchand
2025-03-14 17:37     ` Bruce Richardson
2025-03-14 17:44 ` [PATCH v2 0/4] remove driver-specific logic for AVX builds Bruce Richardson
2025-03-14 17:44   ` [PATCH v2 1/4] build: add generalized AVX handling for drivers Bruce Richardson
2025-03-14 17:44   ` [PATCH v2 2/4] net/intel: use common AVX build code Bruce Richardson
2025-03-14 17:44   ` [PATCH v2 3/4] drivers/net: build use common AVX handling Bruce Richardson
2025-03-14 17:44   ` [PATCH v2 4/4] drivers/net: remove AVX2 build-time define Bruce Richardson
2025-03-17  9:47     ` David Marchand
2025-03-17  9:50   ` [PATCH v2 0/4] remove driver-specific logic for AVX builds David Marchand
2025-03-18 11:51     ` Bruce Richardson
2025-03-18 17:34 ` [PATCH v3 00/11] remove component-specific " Bruce Richardson
2025-03-18 17:34   ` [PATCH v3 01/11] build: add generalized AVX handling for drivers Bruce Richardson
2025-03-18 17:34   ` [PATCH v3 02/11] net/intel: use common AVX build code Bruce Richardson
2025-03-19 10:11     ` David Marchand
2025-03-19 11:17       ` Bruce Richardson
2025-03-18 17:34   ` [PATCH v3 03/11] drivers/net: build use common AVX handling Bruce Richardson
2025-03-18 17:34   ` [PATCH v3 04/11] drivers/net: remove AVX2 build-time define Bruce Richardson
2025-03-18 17:42     ` Ajit Khaparde
2025-03-18 17:34   ` [PATCH v3 05/11] event/dlb2: build using common AVX handling Bruce Richardson
2025-03-18 17:34   ` [PATCH v3 06/11] build: add generalized AVX handling for libs Bruce Richardson
2025-03-18 17:35   ` [PATCH v3 07/11] acl: use common AVX build handling Bruce Richardson
2025-03-19 10:16     ` David Marchand
2025-03-19 10:26       ` Bruce Richardson
2025-03-19 10:40         ` David Marchand
2025-03-19 10:59           ` Bruce Richardson
2025-03-18 17:35   ` [PATCH v3 08/11] fib: " Bruce Richardson
2025-03-18 17:35   ` [PATCH v3 09/11] net: simplify build-time logic for x86 Bruce Richardson
2025-03-19 10:24     ` David Marchand
2025-03-18 17:35   ` [PATCH v3 10/11] net: use common AVX512 build code Bruce Richardson
2025-03-18 17:35   ` [PATCH v3 11/11] member: use common AVX512 build support Bruce Richardson
2025-03-19 10:27   ` [PATCH v3 00/11] remove component-specific logic for AVX builds David Marchand
2025-03-19 17:29 ` [PATCH v4 " Bruce Richardson
2025-03-19 17:29   ` [PATCH v4 01/11] drivers: add generalized AVX build handling Bruce Richardson
2025-03-19 17:29   ` [PATCH v4 02/11] net/intel: use common AVX build code Bruce Richardson
2025-03-19 17:29   ` [PATCH v4 03/11] drivers/net: build use common AVX handling Bruce Richardson
2025-03-19 17:29   ` [PATCH v4 04/11] drivers/net: remove AVX2 build-time define Bruce Richardson
2025-03-19 17:29   ` [PATCH v4 05/11] event/dlb2: build using common AVX handling Bruce Richardson
2025-03-19 17:29   ` [PATCH v4 06/11] lib: add generalized AVX build handling Bruce Richardson
2025-03-19 17:29   ` [PATCH v4 07/11] acl: use common " Bruce Richardson
2025-03-19 17:29   ` [PATCH v4 08/11] fib: " Bruce Richardson
2025-03-19 17:29   ` [PATCH v4 09/11] net: simplify build-time logic for x86 Bruce Richardson
2025-03-20  7:46     ` David Marchand
2025-03-19 17:29   ` [PATCH v4 10/11] net: use common AVX512 build code Bruce Richardson
2025-03-19 17:29   ` [PATCH v4 11/11] member: use common AVX512 build support Bruce Richardson
2025-03-19 18:08   ` [PATCH v4 00/11] remove component-specific logic for AVX builds Bruce Richardson
2025-03-25  7:46     ` David Marchand
2025-03-25 13:12       ` Bruce Richardson
2025-03-27  8:00   ` David Marchand
2025-03-25 16:02 ` [PATCH v5 " Bruce Richardson
2025-03-25 16:02   ` [PATCH v5 01/11] drivers: add generalized AVX build handling Bruce Richardson
2025-03-25 16:02   ` [PATCH v5 02/11] net/intel: use common AVX build code Bruce Richardson
2025-03-25 16:02   ` [PATCH v5 03/11] drivers/net: build use common AVX handling Bruce Richardson
2025-03-25 16:02   ` [PATCH v5 04/11] drivers/net: remove AVX2 build-time define Bruce Richardson
2025-03-25 16:02   ` [PATCH v5 05/11] event/dlb2: build using common AVX handling Bruce Richardson
2025-03-25 16:02   ` [PATCH v5 06/11] lib: add generalized AVX build handling Bruce Richardson
2025-03-25 16:02   ` [PATCH v5 07/11] acl: use common " Bruce Richardson
2025-03-25 16:02   ` [PATCH v5 08/11] fib: " Bruce Richardson
2025-03-25 16:02   ` [PATCH v5 09/11] net: simplify build-time logic for x86 Bruce Richardson
2025-03-25 16:02   ` [PATCH v5 10/11] net: use common AVX512 build code Bruce Richardson
2025-03-25 16:02   ` [PATCH v5 11/11] member: use common AVX512 build support Bruce Richardson
2025-03-26  9:20   ` [PATCH v5 00/11] remove component-specific logic for AVX builds Konstantin Ananyev
2025-03-26 10:12   ` David Marchand
2025-06-09  5:31     ` Varghese, Vipin [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=PH7PR12MB8596A2F5F6F979FF88D54C53826BA@PH7PR12MB8596.namprd12.prod.outlook.com \
    --to=vipin.varghese@amd.com \
    --cc=bruce.richardson@intel.com \
    --cc=david.marchand@redhat.com \
    --cc=dev@dpdk.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).