DPDK patches and discussions
 help / color / mirror / Atom feed
From: "Song, Keesang" <Keesang.Song@amd.com>
To: Thomas Monjalon <thomas@monjalon.net>,
	"techboard@dpdk.org" <techboard@dpdk.org>
Cc: Bruce Richardson <bruce.richardson@intel.com>,
	Aman Kumar <aman.kumar@vvdntech.in>,
	David Marchand <david.marchand@redhat.com>,
	"dev@dpdk.org" <dev@dpdk.org>
Subject: RE: [dpdk-dev] [PATCH] config/x86: add support for AMD platform
Date: Fri, 17 Dec 2021 20:12:45 +0000	[thread overview]
Message-ID: <BY5PR12MB3681C3FC6676BC03F0B42CCC96789@BY5PR12MB3681.namprd12.prod.outlook.com> (raw)
In-Reply-To: <2321772.7Oz6CMQZNc@thomas>

[AMD Official Use Only]

I don't see any update since Thomas's.
Do we have this patch taken care of submitting to 22.03 and backporting it?

-----Original Message-----
From: Thomas Monjalon <thomas@monjalon.net>
Sent: Wednesday, November 24, 2021 4:37 AM
To: techboard@dpdk.org
Cc: Bruce Richardson <bruce.richardson@intel.com>; Aman Kumar <aman.kumar@vvdntech.in>; David Marchand <david.marchand@redhat.com>; Song, Keesang <Keesang.Song@amd.com>; dev@dpdk.org
Subject: Re: [dpdk-dev] [PATCH] config/x86: add support for AMD platform

[CAUTION: External Email]

Ping techboard for comments

18/11/2021 15:05, Thomas Monjalon:
> 18/11/2021 14:52, Bruce Richardson:
> > On Thu, Nov 18, 2021 at 01:25:38PM +0100, Thomas Monjalon wrote:
> > > I request a techboard decision for this patch.
> > >
> > >
> > > 02/11/2021 20:04, Thomas Monjalon:
> > > > 02/11/2021 19:45, David Marchand:
> > > > > On Tue, Nov 2, 2021 at 3:53 PM Aman Kumar <aman.kumar@vvdntech.in> wrote:
> > > > > >
> > > > > > -Dcpu_instruction_set=znverX meson option can be used to
> > > > > > build dpdk for AMD platforms. Supported options are znver1,
> > > > > > znver2 and znver3.
> > > > > >
> > > > > > Signed-off-by: Aman Kumar <aman.kumar@vvdntech.in>
> > > > > > ---
> > > > > >  dpdk_conf.set('RTE_CACHE_LINE_SIZE', 64)
> > > > > > dpdk_conf.set('RTE_MAX_LCORE', 128)
> > > > > > dpdk_conf.set('RTE_MAX_NUMA_NODES', 32)
> > > > > > +
> > > > > > +# AMD platform support
> > > > > > +if get_option('cpu_instruction_set') == 'znver1'
> > > > > > +    dpdk_conf.set('RTE_MAX_LCORE', 256) elif
> > > > > > +get_option('cpu_instruction_set') == 'znver2'
> > > > > > +    dpdk_conf.set('RTE_MAX_LCORE', 512) elif
> > > > > > +get_option('cpu_instruction_set') == 'znver3'
> > > > > > +    dpdk_conf.set('RTE_MAX_LCORE', 512) endif
> > > > >
> > > > > I already replied to a similar patch earlier in this release.
> > > > > https://nam11.safelinks.protection.outlook.com/?url=https%3A%2
> > > > > F%2Finbox.dpdk.org%2Fdev%2FCAJFAV8z-5amvEnr3mazkTqH-7SZX_C6EqC
> > > > > ua6UdMXXHgrcmT6g%40mail.gmail.com%2F&amp;data=04%7C01%7Ckeesan
> > > > > g.song%40amd.com%7C621ed6a39c304c905dbb08d9af4717c5%7C3dd8961f
> > > > > e4884e608e11a82d994e183d%7C0%7C0%7C637733542157359380%7CUnknow
> > > > > n%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik
> > > > > 1haWwiLCJXVCI6Mn0%3D%7C3000&amp;sdata=L9IM4ZtukVwY5qdbGgkt2zlu
> > > > > sGm0ZmrQmE9oMeg1RDo%3D&amp;reserved=0
> > > > >
> > > > > So repeating the same: do you actually _need_ more than 128
> > > > > lcores in a single DPDK application?
> > >
> > > We did not receive an answer to this question.
> > >
> > > > Yes I forgot this previous discussion concluding that we should
> > > > not increase more than 128 threads.
> > >
> > > We had a discussion yesterday in techboard meeting.
> > > The consensus is that we didn't hear for real need of more than
> > > 128 threads, except for configuration usability convenience.
> > >
> > > Now looking again at the code, this is how it is defined:
> > >
> > > option('max_lcores', type: 'string', value: 'default', description:
> > >        'Set maximum number of cores/threads supported by EAL;
> > >        "default" is different per-arch, "detect" detects the
> > > number of cores on the build machine.')
> > > config/x86/meson.build: dpdk_conf.set('RTE_MAX_LCORE', 128)
> > > config/ppc/meson.build: dpdk_conf.set('RTE_MAX_LCORE', 128)
> > > config/arm/meson.build: it goes from 4 to 1280!
> > >
> > > So I feel it is not fair to reject this AMD patch if we allow Arm to go beyond.
> > > Techboard, let's have a quick decision please for 21.11-rc4.
> > >
> > I would support increasing the default value for x86 in this release.
>
> This patch is not increasing the default for all x86, only for some
> CPUs as given at compilation time.
> I think it is the same logic as Arm CPU-specific compilation.
>
> > I believe Dave H. had some patches to decrease the memory footprint
> > overhead of such a change. I don't believe that they were merged,
> > and while it's a bit late for 21.11 now, those should be considered
> > for 22.03 release and then maybe for backport.





      reply	other threads:[~2021-12-21  9:05 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-11-02 14:52 Aman Kumar
2021-11-02 15:18 ` Thomas Monjalon
2021-11-02 15:56   ` Song, Keesang
2021-11-02 18:45 ` David Marchand
2021-11-02 19:04   ` Thomas Monjalon
2021-11-18 12:25     ` Thomas Monjalon
2021-11-18 13:52       ` Bruce Richardson
2021-11-18 14:05         ` Thomas Monjalon
2021-11-24 12:36           ` Thomas Monjalon
2021-12-17 20:12             ` Song, Keesang [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=BY5PR12MB3681C3FC6676BC03F0B42CCC96789@BY5PR12MB3681.namprd12.prod.outlook.com \
    --to=keesang.song@amd.com \
    --cc=aman.kumar@vvdntech.in \
    --cc=bruce.richardson@intel.com \
    --cc=david.marchand@redhat.com \
    --cc=dev@dpdk.org \
    --cc=techboard@dpdk.org \
    --cc=thomas@monjalon.net \
    /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).