-
I think it would be helpful if the committee produced some documentation on:
* What exactly is the Fortran committee?
* How does it currently work?
* How does it relate to the ISO committee? Are …
-
Is there a way to work in FORTRAN 90/95 and perhaps also access its most popular scientific computing libraries (FFTW, BLAS, LAPACK, etc)?
-
The [draft Fortran 2015 standard] defines a new C header file described as follows in Subclause 18.5.1:
"The source file ISO_Fortran_binding.h shall contain the C structure definitions, typedef de…
-
Reproducible on Godbolt:
https://godbolt.org/z/z4vjq7chv
Reproducer:
```f90
integer :: i
!$omp parallel do
do i=1,2
block
integer :: j
do j=1,2
print*,i,j
…
-
Based on some quick checks (compiling with `-pedantic -Wall -Wextra`) there are a bunch of outstanding code compliance issues that should be fixed to suppress warnings, and enable proper cross-platfor…
-
Crash itself is reproducible on Godbolt:
https://godbolt.org/z/97E1E7da5
Reproducer:
```f90
module m
contains
function f(i) result(res)
character(len=i) :: res
end function
…
-
Building fortuno(https://github.com/aradi/fortuno) with flang-new results in a crash. If you are interested in this issue, please follow the steps below to reproduce the crash.
Steps to reproduce:
…
-
-
@bin123apple Where do you share the pairs of before (Fortran) vs. after (C++) translation so @peihunglin can start initial manual grading of them ?
-
### Describe the bug
Following b739d46f1be6f936d6ab955d88f5e55996ed2f44 the Fortran tests are crashing with the Intel compiler. This went unnoticed as #1932 hadn't been fixed yet.