Fwd: gfortran fp16

2022-05-16 Thread Toon Moene
Interesting question. We don't do that yet, as far as I know. Forwarded Message Subject: gfortran fp16 Date: Mon, 16 May 2022 13:24:22 +0800 (GMT+08:00) From: 陈刚 To: gcc-h...@gcc.gnu.org Dear experts, I want to use fp16 in fortran, does gfortran support the fp16? I di

Re: [PATCH, v2] Fortran: fix invalid rank error in ASSOCIATED when rank is remapped [PR77652]

2022-07-27 Thread Toon Moene
compilers differ in the treatment of this case, there might be reason to ask the Fortran Standard Committee for an Interpretation of the Standard ? Kind regards, -- Toon Moene - e-mail: t...@moene.org - phone: +31 346 214290 Saturnushof 14, 3738 XG Maartensdijk, The Netherlands

Re: [PATCH, v2] Fortran: fix invalid rank error in ASSOCIATED when rank is remapped [PR77652]

2022-07-30 Thread Toon Moene
    print *, associated(ptr, scalar)   end subroutine sub end !!!!!!!! -- Toon Moene - e-mail: t...@moene.org - phone: +31 346 214290 Saturnushof 14, 3738 XG Maartensdijk, The Netherlands

Re: Team Collaboration Considerations

2022-12-09 Thread Toon Moene
tributors, but it shows to the broader GCC development community what gfortran is used for, and how *we* deal with their questions and problems (and, thus, how important this part of the GNU Compiler *Collection* is). Oh, BTW, I retire in nine months, which would give me loads of time to deal w

Re: Team Collaboration Considerations

2022-12-09 Thread Toon Moene
regards, -- Toon Moene - e-mail: t...@moene.org - phone: +31 346 214290 Saturnushof 14, 3738 XG Maartensdijk, The Netherlands

Re: Team Collaboration Considerations

2023-01-19 Thread Toon Moene
n't a patch tracker (or at least not a system where you submit patches to a thing vs emailing them to a list and hoping someone replies). Well, you can put patches into Bugzilla ... Kind regards, -- Toon Moene - e-mail: t...@moene.org - phone: +31 346 214290 Saturnushof 14, 3738 XG Maarten

Test with an lto-build of libgfortran.

2023-09-27 Thread Toon Moene
ourse) not given with a non-lto libgfortran. The full question of "lto-ing" run time libraries is more complicated than just "whether it works" as those who attended the BoF will recall. Hope this helps, -- Toon Moene - e-mail: t...@moene.org - phone: +31 346 214290 Saturnushof 14, 3738 XG Maartensdijk, The Netherlands

Re: Test with an lto-build of libgfortran.

2023-09-28 Thread Toon Moene
t of our .mod files. But it would be a big win for Fortran ... Kind regards, -- Toon Moene - e-mail: t...@moene.org - phone: +31 346 214290 Saturnushof 14, 3738 XG Maartensdijk, The Netherlands

Re: Test with an lto-build of libgfortran.

2023-09-28 Thread Toon Moene
always used only by the same snapshot from the release branch and so should be compatible with the LTO in it. This might be an argument to make it a configure option, e.g. --enable-lto-runtime. Kind regards, -- Toon Moene - e-mail: t...@moene.org - phone: +31 346 214290 Saturnushof 14, 3738 XG

Re: Complex numbers support: discussions summary

2023-10-05 Thread Toon Moene
On 9/26/23 20:40, Toon Moene wrote: On 9/26/23 09:30, Richard Biener via Gcc wrote: On Mon, Sep 25, 2023 at 5:17 PM Sylvain Noiry via Gcc wrote: As I said at the end of the presentation, we have written a paper which explains our implementation in details. You can find it on the wiki page

Fwd: [PATCH] testsuite, gfortan: Update link flags [PR112862].

2024-01-28 Thread Toon Moene
Forwarded Message Subject: [PATCH] testsuite, gfortan: Update link flags [PR112862]. Date: Sun, 28 Jan 2024 15:03:08 + From: Iain Sandoe Reply-To: i...@sandoe.co.uk To: gcc-patc...@gcc.gnu.org CC: r...@cebitec.uni-bielefeld.de Tested on i686, x86_64, aarch64 Darwin, x86

Re: [PATCH]AArch64: xfail modes_1.f90 [PR107071]

2024-02-19 Thread Toon Moene
For better visibility to the Fortran crowd, I'll send this to the Fortran mailing list. See Richard Earnshaw's remark near the end of the message. Kind regards, Toon Moene. On 2/19/24 14:16, Richard Earnshaw (lists) wrote: On 19/02/2024 10:58, Tamar Christina wrote: -Origin

Tests of gcc development beyond its testsuite (in this case, for gfortran)

2024-05-06 Thread Toon Moene
g file - there is more information in it to zoom in on the errors on the aarch64 side (note that the x86_64 side is not faultless). Is there a way to pass this information to our websites, so that we do not "forget" this - or in the alternative, follow the progress in solving this ?

Re: Tests of gcc development beyond its testsuite (in this case, for gfortran)

2024-05-06 Thread Toon Moene
enabled by default. I am suspect the aarch64 "excessive exceeding the threshold for errors" are all caused by the more use of FMA rather than anything else. Aah, I forgot to include that tidbit, because its readily apparent from the full logs - I compiled with *just* -O3. Thanks, --

Re: Tests of gcc development beyond its testsuite (in this case, for gfortran)

2024-05-06 Thread Toon Moene
On 5/6/24 23:35, Toon Moene wrote: On 5/6/24 23:32, Andrew Pinski wrote: Did you test x86_64 with -march=native (or with -mfma) or just -O3? The reason why I am asking is aarch64 includes FMA by default while x86_64 does not. Most recent x86_64 includes an FMA instruction but since the base

Re: Tests of gcc development beyond its testsuite (in this case, for gfortran)

2024-05-07 Thread Toon Moene
On 5/7/24 00:02, Toon Moene wrote: OK, perhaps on the aarch64 I need the following option to make the comparison fair: ‘rdma’     Enable Round Double Multiply Accumulate instructions. This is on by default for -march=armv8.1-a. I.e., -mno-rdma (I hope that's correct - I'll wil

Re: Tests of gcc development beyond its testsuite (in this case, for gfortran)

2024-05-07 Thread Toon Moene
On 5/7/24 20:35, Andrew Pinski wrote: On Tue, May 7, 2024 at 11:31 AM Toon Moene wrote: On 5/7/24 00:02, Toon Moene wrote: OK, perhaps on the aarch64 I need the following option to make the comparison fair: ‘rdma’ Enable Round Double Multiply Accumulate instructions. This is on by

Re: Tests of gcc development beyond its testsuite (in this case, for gfortran)

2024-05-08 Thread Toon Moene
On 5/7/24 20:44, Toon Moene wrote: On 5/7/24 20:35, Andrew Pinski wrote: On Tue, May 7, 2024 at 11:31 AM Toon Moene wrote: On 5/7/24 00:02, Toon Moene wrote: OK, perhaps on the aarch64 I need the following option to make the comparison fair: ‘rdma’   Enable Round Double Multiply

Re: git help: fortran_unsigned branch

2024-08-09 Thread Toon Moene
ive a "git pull && git merge" (and then fix the conflicts ...). That said, I didn't have a chance to work on gcc's git, so my experience might not apply here ... -- Toon Moene - e-mail: t...@moene.org - phone: +31 346 214290 Saturnushof 14, 3738 XG Maartensdijk, The Netherlands

Fwd: GCC 11.0.1 Status Report (2021-03-16)

2021-03-16 Thread Toon Moene
For Your Information ... Forwarded Message Subject: GCC 11.0.1 Status Report (2021-03-16) Date: Tue, 16 Mar 2021 12:19:20 +0100 (CET) From: Richard Biener Reply-To: g...@gcc.gnu.org To: g...@gcc.gnu.org CC: gcc-patc...@gcc.gnu.org Status == GCC trunk which eventually wi

Fwd: Update to GCC copyright assignment policy

2021-06-01 Thread Toon Moene
Hi All, I know that most - if not all - of you do not follow the GCC Development mailing list, so I'll forward the below message by the Steering Committee. In short: For anyone on this mailing list who already contributes to gfortran and has a FSF copyright assignment, nothing changes. Ki

Re: [PATCH, Fortran] Fix setting of array lower bound for named arrays

2021-11-30 Thread Toon Moene
to ask the Fortran Standardization Committee for an interpretation (of the standard's text). Kind regards, -- Toon Moene - e-mail: t...@moene.org - phone: +31 346 214290 Saturnushof 14, 3738 XG Maartensdijk, The Netherlands

Re: Complex arithmetic in Fortran

2024-11-13 Thread Toon Moene
nction p(c, r) complex, intent(in) :: c real, intent(in):: r p = c * r end I definitely see a difference between $ gfortran -O2 -S complex.f90 and $ gfortran -O2 -ffast-math -S complex.f90 -- Toon Moene - e-mail: t...@moene.org - phone: +31 346 214290 Saturnushof 14, 3738 XG Maarten

Re: Complex arithmetic in Fortran

2024-11-13 Thread Toon Moene
On 11/13/24 15:40, Richard Biener wrote: On Wed, Nov 13, 2024 at 3:21 PM Toon Moene wrote: On 11/13/24 15:12, Richard Biener wrote: On Wed, Nov 13, 2024 at 3:05 PM Thomas Koenig wrote: Hello world, J3, the US Fortran standards committee, has passed https://j3-fortran.org/doc/year/24/24

Re: [wwwdocs][Patch] gcc-15: Fortran - mention -funsigned + PowerPC Darwin IEEE module support

2024-09-20 Thread Toon Moene
might be that Thomas finishes his UNSIGNED work, which surely would be notable. Kind regards, -- Toon Moene - e-mail: t...@moene.org - phone: +31 346 214290 Saturnushof 14, 3738 XG Maartensdijk, The Netherlands