All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Alex Bennée" <alex.bennee@linaro.org>
To: Richard Henderson <richard.henderson@linaro.org>
Cc: peter.maydell@linaro.org,
	"Philippe Mathieu-Daudé" <philmd@redhat.com>,
	qemu-arm@nongnu.org, qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH v1 7/9] tests/tcg: add float_madds test to multiarch
Date: Tue, 17 Sep 2019 22:00:44 +0100	[thread overview]
Message-ID: <877e661vur.fsf@linaro.org> (raw)
In-Reply-To: <afd9bc85-9c79-a456-73c1-fc19e97d1acd@linaro.org>


Richard Henderson <richard.henderson@linaro.org> writes:

> On 9/17/19 2:41 PM, Alex Bennée wrote:
>> +    /* From https://bugs.launchpad.net/qemu/+bug/1841491 */
>> +    add_f32_const(0x1.ffffffffffffcp-1022);
>> +    add_f32_const(0x1.0000000000001p-1);
>> +    add_f32_const(0x0.0000000000001p-1022);
>
> These three constants do not fit in float32.
>
>> +    add_f32_const(0x8p-152);
>> +    add_f32_const(0x8p-152);
>> +    add_f32_const(0x8p-152);
>
> Why are you adding 3 of the same?

To replicate the 1841491 test case where the same number is used for
a/b/c
>
>> +        for (j = 0; j < nums; j++) {
>> +            for (k = 0; k < 3; k++) {
>> +                a = get_f32(j + ((k)%3));
>> +                b = get_f32(j + ((k+1)%3));
>> +                c = get_f32(j + ((k+2)%3));
>
> How does this not overflow nums?
> There does not appear to be an assert on overflow in get_f<N>.

get_f<N> wraps the index with a mod op.

>
>> +#if defined(__arm__)
>> +                r = __builtin_fmaf(a, b, c);
>> +#else
>> +                r = __builtin_fmaf(a, b, c);
>> +#endif
>
> Eh?

Ahh I was going to hardcode the arm madd instruction in as the builtin
wasn't expanding. I tried setting -march in the CFLAGS but that didn't
trigger it either on my buster arm-hf compiler. Any ideas how to get the
compiler to do the right thing?

>
>> +/* Number of constants in each table */
>> +int get_num_f16();
>> +int get_num_f32();
>> +int get_num_f64();
>
> This is not c++; you want (void) to indicate no arguments.

ok.

>
>
> r~


--
Alex Bennée

WARNING: multiple messages have this Message-ID (diff)
From: "Alex Bennée" <alex.bennee@linaro.org>
To: Richard Henderson <richard.henderson@linaro.org>
Cc: peter.maydell@linaro.org, qemu-arm@nongnu.org,
	"Philippe Mathieu-Daudé" <philmd@redhat.com>,
	qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH v1 7/9] tests/tcg: add float_madds test to multiarch
Date: Tue, 17 Sep 2019 22:00:44 +0100	[thread overview]
Message-ID: <877e661vur.fsf@linaro.org> (raw)
In-Reply-To: <afd9bc85-9c79-a456-73c1-fc19e97d1acd@linaro.org>


Richard Henderson <richard.henderson@linaro.org> writes:

> On 9/17/19 2:41 PM, Alex Bennée wrote:
>> +    /* From https://bugs.launchpad.net/qemu/+bug/1841491 */
>> +    add_f32_const(0x1.ffffffffffffcp-1022);
>> +    add_f32_const(0x1.0000000000001p-1);
>> +    add_f32_const(0x0.0000000000001p-1022);
>
> These three constants do not fit in float32.
>
>> +    add_f32_const(0x8p-152);
>> +    add_f32_const(0x8p-152);
>> +    add_f32_const(0x8p-152);
>
> Why are you adding 3 of the same?

To replicate the 1841491 test case where the same number is used for
a/b/c
>
>> +        for (j = 0; j < nums; j++) {
>> +            for (k = 0; k < 3; k++) {
>> +                a = get_f32(j + ((k)%3));
>> +                b = get_f32(j + ((k+1)%3));
>> +                c = get_f32(j + ((k+2)%3));
>
> How does this not overflow nums?
> There does not appear to be an assert on overflow in get_f<N>.

get_f<N> wraps the index with a mod op.

>
>> +#if defined(__arm__)
>> +                r = __builtin_fmaf(a, b, c);
>> +#else
>> +                r = __builtin_fmaf(a, b, c);
>> +#endif
>
> Eh?

Ahh I was going to hardcode the arm madd instruction in as the builtin
wasn't expanding. I tried setting -march in the CFLAGS but that didn't
trigger it either on my buster arm-hf compiler. Any ideas how to get the
compiler to do the right thing?

>
>> +/* Number of constants in each table */
>> +int get_num_f16();
>> +int get_num_f32();
>> +int get_num_f64();
>
> This is not c++; you want (void) to indicate no arguments.

ok.

>
>
> r~


--
Alex Bennée


  reply	other threads:[~2019-09-17 21:00 UTC|newest]

Thread overview: 39+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-09-17 18:41 [PATCH v1 0/9] testing/next (docker,podman,float) Alex Bennée
2019-09-17 18:41 ` [Qemu-devel] " Alex Bennée
2019-09-17 18:41 ` [PATCH v1 1/9] tests/docker: add sanitizers back to clang build Alex Bennée
2019-09-17 18:41   ` [Qemu-devel] " Alex Bennée
2019-09-17 18:43   ` John Snow
2019-09-17 18:43     ` [Qemu-devel] " John Snow
2019-09-17 18:41 ` [PATCH v1 2/9] tests/docker: fix DOCKER_PARTIAL_IMAGES Alex Bennée
2019-09-17 18:41   ` [Qemu-devel] " Alex Bennée
2019-09-17 19:44   ` Philippe Mathieu-Daudé
2019-09-17 19:44     ` [Qemu-devel] " Philippe Mathieu-Daudé
2019-09-17 18:41 ` [PATCH v1 3/9] podman: fix command invocation Alex Bennée
2019-09-17 18:41   ` [Qemu-devel] " Alex Bennée
2019-09-17 18:41 ` [PATCH v1 4/9] target/ppc: fix signal delivery for ppc64abi32 Alex Bennée
2019-09-17 18:41   ` [Qemu-devel] " Alex Bennée
2019-09-17 18:41 ` [PATCH v1 5/9] tests/tcg: clean-up some comments after the de-tangling Alex Bennée
2019-09-17 18:41   ` [Qemu-devel] " Alex Bennée
2019-09-17 18:41 ` [PATCH v1 6/9] tests/tcg: re-enable linux-test for ppc64abi32 Alex Bennée
2019-09-17 18:41   ` [Qemu-devel] " Alex Bennée
2019-09-17 18:41 ` [PATCH v1 7/9] tests/tcg: add float_madds test to multiarch Alex Bennée
2019-09-17 18:41   ` [Qemu-devel] " Alex Bennée
2019-09-17 19:46   ` Richard Henderson
2019-09-17 19:46     ` Richard Henderson
2019-09-17 21:00     ` Alex Bennée [this message]
2019-09-17 21:00       ` Alex Bennée
2019-09-17 21:28       ` Richard Henderson
2019-09-17 21:28         ` Richard Henderson
2019-09-18 11:33         ` Alex Bennée
2019-09-18 11:33           ` Alex Bennée
2019-09-18 15:14           ` Richard Henderson
2019-09-18 15:14             ` Richard Henderson
2019-09-17 18:41 ` [PATCH v1 8/9] tests/tcg: add generic version of float_convs Alex Bennée
2019-09-17 18:41   ` [Qemu-devel] " Alex Bennée
2019-09-17 19:49   ` Richard Henderson
2019-09-17 20:57     ` Alex Bennée
2019-09-17 21:31       ` Richard Henderson
2019-09-17 18:41 ` [PATCH v1 9/9] tests/tcg: add refs for PPC float_[convs|madds] tests (FAILS TESTS) Alex Bennée
2019-09-17 18:41   ` [Qemu-devel] " Alex Bennée
2019-09-18  8:02 ` [Qemu-devel] [PATCH v1 0/9] testing/next (docker,podman,float) no-reply
2019-09-18  8:02   ` [Qemu-devel] [PATCH v1 0/9] testing/next (docker, podman, float) no-reply

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=877e661vur.fsf@linaro.org \
    --to=alex.bennee@linaro.org \
    --cc=peter.maydell@linaro.org \
    --cc=philmd@redhat.com \
    --cc=qemu-arm@nongnu.org \
    --cc=qemu-devel@nongnu.org \
    --cc=richard.henderson@linaro.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.