From: David Laight <David.Laight@ACULAB.COM>
To: 'Yury Norov' <yury.norov@gmail.com>,
Kuan-Wei Chiu <visitorckw@gmail.com>
Cc: "akpm@linux-foundation.org" <akpm@linux-foundation.org>,
"linux@rasmusvillemoes.dk" <linux@rasmusvillemoes.dk>,
"n26122115@gs.ncku.edu.tw" <n26122115@gs.ncku.edu.tw>,
"jserv@ccns.ncku.edu.tw" <jserv@ccns.ncku.edu.tw>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Subject: RE: [PATCH v4 1/2] lib/test_bitops: Add benchmark test for fns()
Date: Sun, 5 May 2024 13:11:53 +0000 [thread overview]
Message-ID: <62fdb348791949c08e53936e3bc442b5@AcuMS.aculab.com> (raw)
In-Reply-To: <ZjJt9w2mvdm2P+dM@yury-ThinkPad>
From: Yury Norov
> Sent: 01 May 2024 17:30
>
> On Wed, May 01, 2024 at 09:20:46PM +0800, Kuan-Wei Chiu wrote:
> > Introduce a benchmark test for the fns(). It measures the total time
> > taken by fns() to process 1,000,000 test data generated using
> > get_random_bytes() for each n in the range [0, BITS_PER_LONG).
> >
> > example:
> > test_bitops: fns: 5876762553 ns, 64000000 iterations
>
> So... 5 seconds for a test sounds too much. I see the following patch
> improves it dramatically, but in general let's stay in a range of
> milliseconds. On other machines it may run much slower and trigger
> a stall watchdog.
>
> > Signed-off-by: Kuan-Wei Chiu <visitorckw@gmail.com>
>
> Suggested-by: Yury Norov <yury.norov@gmail.com>
>
> > ---
> >
> > Changes in v4:
> > - Correct get_random_long() -> get_random_bytes() in the commit
> > message.
> >
> > lib/test_bitops.c | 22 ++++++++++++++++++++++
> > 1 file changed, 22 insertions(+)
> >
> > diff --git a/lib/test_bitops.c b/lib/test_bitops.c
> > index 3b7bcbee84db..ed939f124417 100644
> > --- a/lib/test_bitops.c
> > +++ b/lib/test_bitops.c
> > @@ -50,6 +50,26 @@ static unsigned long order_comb_long[][2] = {
> > };
> > #endif
> >
> > +static unsigned long buf[1000000];
>
> Can you make it __init, or allocate with kmalloc_array(), so that 64M
> of memory will not last forever in the kernel?
>
> > +static int __init test_fns(void)
> > +{
> > + unsigned int i, n;
> > + ktime_t time;
> > +
> > + get_random_bytes(buf, sizeof(buf));
> > + time = ktime_get();
> > +
> > + for (n = 0; n < BITS_PER_LONG; n++)
> > + for (i = 0; i < 1000000; i++)
> > + fns(buf[i], n);
>
> What concerns me here is that fns() is a in fact a const function, and
> the whole loop may be eliminated. Can you make sure it's not your case
> because 450x performance boost sounds a bit too much to me.
>
> You can declare a "static volatile __used __init" variable to assign
> the result of fns(), and ensure that the code is not eliminated
Yep, without 'c' this compiler to 'return 0'.
static inline unsigned long fns(unsigned long word, unsigned int n)
{
while (word && n--)
word &= word - 1;
return word ? __builtin_ffs(word) : 8 * sizeof (long);
}
unsigned long buf[1000000];
volatile int c;
int test_fns(void)
{
unsigned int i, n;
for (n = 0; n < 8*sizeof (long); n++)
for (i = 0; i < 1000000; i++)
c = fns(buf[i], n);
return 0;
}
You are also hitting the random number generator.
It would be better to use a predictable sequence.
Then you could, for instance, add up all the fns() results
and check you get the expected value.
With a really trivial 'RNG' (like step a CRC one bit) you
could do it inside the loop and not nee a buffer at all.
David
-
Registered Address Lakeside, Bramley Road, Mount Farm, Milton Keynes, MK1 1PT, UK
Registration No: 1397386 (Wales)
next prev parent reply other threads:[~2024-05-05 13:12 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-05-01 13:20 [PATCH v4 0/2] bitops: Optimize fns() for improved performance Kuan-Wei Chiu
2024-05-01 13:20 ` [PATCH v4 1/2] lib/test_bitops: Add benchmark test for fns() Kuan-Wei Chiu
2024-05-01 16:29 ` Yury Norov
2024-05-05 13:11 ` David Laight [this message]
2024-05-05 18:48 ` Kuan-Wei Chiu
2024-05-05 20:39 ` Yury Norov
2024-05-05 21:49 ` David Laight
2024-05-01 13:20 ` [PATCH v4 2/2] bitops: Optimize fns() for improved performance Kuan-Wei Chiu
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=62fdb348791949c08e53936e3bc442b5@AcuMS.aculab.com \
--to=david.laight@aculab.com \
--cc=akpm@linux-foundation.org \
--cc=jserv@ccns.ncku.edu.tw \
--cc=linux-kernel@vger.kernel.org \
--cc=linux@rasmusvillemoes.dk \
--cc=n26122115@gs.ncku.edu.tw \
--cc=visitorckw@gmail.com \
--cc=yury.norov@gmail.com \
/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