All of lore.kernel.org
 help / color / mirror / Atom feed
From: Aleksandar Markovic <aleksandar.m.mail@gmail.com>
To: Dino Papararo <skizzato73@msn.com>
Cc: "richard.henderson@linaro.org" <richard.henderson@linaro.org>,
	"Mark Cave-Ayland" <mark.cave-ayland@ilande.co.uk>,
	"QEMU Developers" <qemu-devel@nongnu.org>,
	Programmingkid <programmingkidx@gmail.com>,
	"cota@braap.org" <cota@braap.org>,
	"qemu-ppc@nongnu.org" <qemu-ppc@nongnu.org>,
	"Howard Spoelstra" <hsp.cat7@gmail.com>,
	"luigi burdo" <intermediadc@hotmail.com>,
	"Alex Bennée" <alex.bennee@linaro.org>,
	"David Gibson" <david@gibson.dropbear.id.au>
Subject: Re: R: [RFC PATCH v2] target/ppc: Enable hardfloat for PPC
Date: Wed, 26 Feb 2020 19:51:33 +0100	[thread overview]
Message-ID: <CAL1e-=iiL8r0P0smAYfU=Fo0yj4QsHjC7OpDFQ-7BhTryEhPnQ@mail.gmail.com> (raw)
In-Reply-To: <AM4PR07MB350693B43AE3987D317948ADCAEA0@AM4PR07MB3506.eurprd07.prod.outlook.com>

On Wed, Feb 26, 2020 at 7:14 PM Dino Papararo <skizzato73@msn.com> wrote:
>
> I think we all agree the best solution is to resolve powerpc issues about hardfloat current implementation.
> I think also powerpc is an important branch of qemu, for hystorical, present and (why not?) future reasons, and it must NOT be left behind.
> So I would invite best Qemu community's skilled programmers to work on this and solve the issue maybe in few days.
> The same group who worked on recent altivec optimizations is able to make a good patch even for this.
>
> In a subordinate way I'd like to implement anyway hardfloat support for powerpc, advising users about inaccurancy of results/flags and letting them choose.

Just to be clear, concluding from your surrounding sentences, you don't
mean here to implement "hardfloat support for powerpc", but something
like "improve performance of ppc FPU emulation by misusing hardfloat
support and giving up accuracy". I think we have to be honest between
ourselves.

Regards,
Aleksandar

> Of course I understand, and in part agree, on all your objections.
> Simply I prefer have always a choice.
>
> Best Regards,
> Dino Papararo
>
> -----Messaggio originale-----
> Da: Aleksandar Markovic <aleksandar.m.mail@gmail.com>
> Inviato: mercoledì 26 febbraio 2020 18:27
> A: G 3 <programmingkidx@gmail.com>
> Cc: Alex Bennée <alex.bennee@linaro.org>; Dino Papararo <skizzato73@msn.com>; QEMU Developers <qemu-devel@nongnu.org>; qemu-ppc@nongnu.org; Howard Spoelstra <hsp.cat7@gmail.com>; luigi burdo <intermediadc@hotmail.com>; David Gibson <david@gibson.dropbear.id.au>
> Oggetto: Re: R: [RFC PATCH v2] target/ppc: Enable hardfloat for PPC
>
> On Wed, Feb 26, 2020 at 6:04 PM G 3 <programmingkidx@gmail.com> wrote:
> >
> > Accuracy is an important part of the IEEE 754 floating point standard. The whole purpose of this standard is to ensure floating point calculations are consistent across multiple CPUs. I believe referring to this patch as inaccurate is itself inaccurate. That gives the impression that this patch produces calculations that are not inline with established standards. This is not true. The only part of this patch that will produce incorrect values are the flags. There *may* be a program or two out there that depend on these flags, but for the majority of programs that only care about basic floating point arithmetic this patch will produce correct values. Currently the emulated PowerPC's FPU already produces wrong values for the flags. This patch does set the Inexact flag (which I don't like), but since I have never encountered any source code that cares for this flag, I can let it go. I think giving the user the ability to decide which option to use is the best thing to do.
> >
>
> From the experiments described above, the patch in question changes the behavior of applications (for example, sound is different with and without the patch), which is in contradiction with your claim that you "never encountered any source code that cares for this flag" and that "the only part of this patch that will produce incorrect values are the flags".
>
> In other words, and playing further with them:
>
> The claim that "referring to this patch as inaccurate is itself inaccurate" is itself inaccurate.
>
> Best regards,
> Aleksandar
>
>
> > On Wed, Feb 26, 2020 at 10:51 AM Aleksandar Markovic <aleksandar.m.mail@gmail.com> wrote:
> >>
> >>
> >>
> >> On Wed, Feb 26, 2020 at 3:29 PM Alex Bennée <alex.bennee@linaro.org> wrote:
> >> >
> >> >
> >> > Dino Papararo <skizzato73@msn.com> writes:
> >> >
> >> > > Please let's go with hardfloat pps support, it's really a good feature to implement.
> >> > > Even if in a first step it could lead to inaccuracy results,
> >> > > later it could solved with other patches.
> >> >
> >> > That's the wrong way around. We have regression tests for a reason.
> >>
> >> I tend to agree with Alex here, and additionally want to expand more
> >> on this topic.
> >>
> >> In my view: (that I think is at least very close to the community
> >> consensus)
> >>
> >> This is *not* a ppc-specific issue. There exist a principle across
> >> all targets that QEMU FPU calculation must be accurate - exactly as
> >> specified in any applicable particular ISA document. Any discrepancy is an outright bug.
> >>
> >> We even recently had several patches for FPU in ppc target that
> >> handled some fairly obscure cases of inaccuracies, I believe they
> >> were authored by Paul Clarke, so there are people in ppc community
> >> that care about FPU accuracy (as I guess is the case for any target).
> >>
> >> There shouldn't be a target that decides by itself and within itself
> >> "ok, we don't need accuracy, let's trade it for speed". This violates
> >> the architecture of QEMU. Please allow that for any given software
> >> project, there is an architecture that should be respected.
> >>
> >> This doesn't mean that anybody's experimentation is discouraged.
> >> No-one can stop anybody from forking from QEMU upstream tree and do
> >> whatever is wanted.
> >>
> >> But, this doesn't mean such experimentation will be upstreamed. QEMU
> >> upstream should be collecting place for the best ideas and
> >> implementations, not for arbitrary experimentations.
> >>
> >> Best regards,
> >> Aleksandar
> >>
> >>
> >> > I'll happily accept patches to turn on hardfloat for PPC if:
> >> >
> >> >  a) they don't cause regressions in our fairly extensive floating
> >> > point  tests
> >> >  b) the PPC maintainers are happy with the new performance profile
> >> >
> >> > The way forward would be to:
> >> >
> >> >  1. patch to drop #if defined(TARGET_PPC) || defined(__FAST_MATH__)
> >> > 2. audit target/ppc/fpu_helper.c w.r.t chip manual and fix any
> >> > unneeded  splatting of flags (if any)  3. measure the before/after
> >> > performance effect and decide if on balance  it's worth keeping
> >> >
> >> > > I think it's important for qemu to as global as possible and
> >> > > don't target only recent hardware.
> >> >
> >> > Are you referring to guests or hosts? For guests we will always
> >> > favour accuracy of speed of emulation. For hosts we need to have
> >> > IEEE compliant FPU HW to even stand a chance of using hardfloat.
> >> >
> >> > --
> >> > Alex Bennée
> >> >


  reply	other threads:[~2020-02-26 18:53 UTC|newest]

Thread overview: 45+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-02-18 17:10 [RFC PATCH v2] target/ppc: Enable hardfloat for PPC BALATON Zoltan
2020-02-18 17:38 ` BALATON Zoltan
2020-02-19  2:27 ` Programmingkid
2020-02-19 15:35   ` BALATON Zoltan
2020-02-19 18:28     ` Howard Spoelstra
2020-02-19 19:28       ` BALATON Zoltan
2020-02-20  5:43         ` Howard Spoelstra
2020-02-25  3:07     ` Programmingkid
2020-02-25 12:09       ` BALATON Zoltan
2020-02-26 10:46         ` Programmingkid
2020-02-26 11:28           ` BALATON Zoltan
2020-02-26 13:00             ` R: " luigi burdo
2020-02-26 13:08               ` Dino Papararo
2020-02-26 14:28                 ` Alex Bennée
2020-02-26 15:50                   ` Aleksandar Markovic
2020-02-26 17:04                     ` G 3
2020-02-26 17:27                       ` Aleksandar Markovic
2020-02-26 18:14                         ` R: " Dino Papararo
2020-02-26 18:51                           ` Aleksandar Markovic [this message]
2020-02-27  2:43                         ` Programmingkid
2020-02-27  7:16                           ` Aleksandar Markovic
2020-02-27 11:54                             ` BALATON Zoltan
2020-02-26 18:09                       ` R: " Alex Bennée
2020-03-02  0:13                         ` Programmingkid
2020-03-02  4:28                           ` Richard Henderson
2020-03-02 11:42                             ` BALATON Zoltan
2020-03-02 16:55                               ` Richard Henderson
2020-03-02 23:16                                 ` BALATON Zoltan
2020-03-03  0:11                                   ` Richard Henderson
     [not found]                                   ` <CAKyx-3Pt2qLPXWQjBwrHn-nxR-9e++TioGp4cKFC3adMN3rtiw@mail.gmail.com>
2020-03-04 18:43                                     ` Fwd: " G 3
2020-03-05 19:25                                       ` Richard Henderson
2020-03-02 17:10                               ` Alex Bennée
2020-03-02 23:01                                 ` BALATON Zoltan
2020-02-26 22:51                   ` R: " BALATON Zoltan
2020-02-20 20:13 ` Richard Henderson
2020-02-21 16:04   ` BALATON Zoltan
2020-02-21 16:11     ` Peter Maydell
2020-02-21 16:51       ` Aleksandar Markovic
2020-02-21 18:04       ` BALATON Zoltan
2020-02-21 18:26         ` Peter Maydell
2020-02-21 19:52           ` BALATON Zoltan
2020-02-26 12:28             ` Alex Bennée
2020-02-26 13:07               ` BALATON Zoltan
2020-04-10 13:50 ` 罗勇刚(Yonggang Luo)
2020-04-10 18:04   ` BALATON Zoltan

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='CAL1e-=iiL8r0P0smAYfU=Fo0yj4QsHjC7OpDFQ-7BhTryEhPnQ@mail.gmail.com' \
    --to=aleksandar.m.mail@gmail.com \
    --cc=alex.bennee@linaro.org \
    --cc=cota@braap.org \
    --cc=david@gibson.dropbear.id.au \
    --cc=hsp.cat7@gmail.com \
    --cc=intermediadc@hotmail.com \
    --cc=mark.cave-ayland@ilande.co.uk \
    --cc=programmingkidx@gmail.com \
    --cc=qemu-devel@nongnu.org \
    --cc=qemu-ppc@nongnu.org \
    --cc=richard.henderson@linaro.org \
    --cc=skizzato73@msn.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 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.