From: Yury Norov <yury.norov@gmail.com>
To: Kuan-Wei Chiu <visitorckw@gmail.com>
Cc: akpm@linux-foundation.org, linux@rasmusvillemoes.dk,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH v2 1/2] lib/find_bit_benchmark: Add benchmark test for fns()
Date: Tue, 30 Apr 2024 10:24:03 -0700 [thread overview]
Message-ID: <ZjEpMy3hFXqfavva@yury-ThinkPad> (raw)
In-Reply-To: <20240430054912.124237-2-visitorckw@gmail.com>
On Tue, Apr 30, 2024 at 01:49:11PM +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_long() for each n in the range [0, BITS_PER_LONG].
Can you also print an example of test output?
> Signed-off-by: Kuan-Wei Chiu <visitorckw@gmail.com>
> ---
> lib/find_bit_benchmark.c | 25 +++++++++++++++++++++++++
> 1 file changed, 25 insertions(+)
>
> diff --git a/lib/find_bit_benchmark.c b/lib/find_bit_benchmark.c
> index d3fb09e6eff1..8712eacf3bbd 100644
> --- a/lib/find_bit_benchmark.c
> +++ b/lib/find_bit_benchmark.c
> @@ -146,6 +146,28 @@ static int __init test_find_next_and_bit(const void *bitmap,
> return 0;
> }
>
> +static int __init test_fns(void)
> +{
> + const unsigned long round = 1000000;
> + s64 time[BITS_PER_LONG + 1];
> + unsigned int i, n;
> + volatile unsigned long x, y;
> +
> + for (n = 0; n <= BITS_PER_LONG; n++) {
n == BITS_PER_LONG is an error. Testing error case together with
normal cases is even worse error because it fools readers.
> + time[n] = ktime_get();
> + for (i = 0; i < round; i++) {
> + x = get_random_long();
> + y = fns(x, n);
> + }
Here you count fns() + get_random_long() time. For your microbench
purposes it would be better exclude a random number generation
overhead.
> + time[n] = ktime_get() - time[n];
> + }
> +
> + for (n = 0; n <= BITS_PER_LONG; n++)
> + pr_err("fns: n = %2u: %12lld ns\n", n, time[n]);
Nah, not like that. Each test in there prints one line in the
report. Let's keep it that way for test_fns() too. Unless we have
a strong evidence that fns() for a particular input is worth to be
tracked separately, let's just print a total gross?
> +
> + return 0;
> +}
I'd suggest to modify it like:
static unsigned long buf[1000000];
static int __init test_fns(void)
{
get_random_bytes(buf, ARRAY_SIZE(buf));
time = ktime_get();
for (n = 0; n < BITS_PER_LONG; n++)
for (i = 0; i < 1000000; i++)
fns(buf[i], n);
time = ktime_get() - time;
pr_err(...);
}
> static int __init find_bit_test(void)
> {
> unsigned long nbits = BITMAP_LEN / SPARSE;
> @@ -186,6 +208,9 @@ static int __init find_bit_test(void)
> test_find_first_and_bit(bitmap, bitmap2, BITMAP_LEN);
> test_find_next_and_bit(bitmap, bitmap2, BITMAP_LEN);
>
> + pr_err("\nStart testing for fns()\n");
> + test_fns();
There are 2 sections in the test - one for regular, and another for
sparse data. Adding a new section for a just one function doesn't look
like a good idea.
Even more, the fns() is already tested here. Maybe test_bitops is a
better place for this test?
> +
> /*
> * Everything is OK. Return error just to let user run benchmark
> * again without annoying rmmod.
> --
> 2.34.1
next prev parent reply other threads:[~2024-04-30 17:24 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-04-30 5:49 [PATCH v2 0/2] bitops: Optimize fns() for improved performance Kuan-Wei Chiu
2024-04-30 5:49 ` [PATCH v2 1/2] lib/find_bit_benchmark: Add benchmark test for fns() Kuan-Wei Chiu
2024-04-30 17:24 ` Yury Norov [this message]
2024-05-01 4:50 ` Kuan-Wei Chiu
2024-04-30 22:50 ` kernel test robot
2024-04-30 5:49 ` [PATCH v2 2/2] bitops: Optimize fns() for improved performance Kuan-Wei Chiu
2024-04-30 17:36 ` Yury Norov
2024-04-30 6:11 ` [PATCH v2 0/2] " 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=ZjEpMy3hFXqfavva@yury-ThinkPad \
--to=yury.norov@gmail.com \
--cc=akpm@linux-foundation.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux@rasmusvillemoes.dk \
--cc=visitorckw@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