Ondřej Čertík
Ondřej Čertík
```fortran program test_alloc integer, allocatable :: x allocate(x) allocate(x) print *, "Passed, but should not." end program ``` This gives: ```console $ gfortran a.f90 && ./a.out At line 4 of...
Here are the improvements that we should implement: * [x] https://github.com/lfortran/lfortran/issues/8726#issuecomment-3411817520 * [x] Add line/column number, filename (embed at compile time) * [x] https://github.com/lfortran/lfortran/issues/8728 * [x] https://github.com/lfortran/lfortran/issues/8750 * [x] https://github.com/lfortran/lfortran/pull/8887...
They typically fail with gfortran: * [ ] #8613 * [ ] #8660 * [ ] #8770 * [x] #9026
This happened here: https://github.com/lfortran/lfortran/actions/runs/17933447362/job/50994885071?pr=8612, but it seems unrelated to the PR: ``` 1892/1967 Test #1893: openmp_58 ..........................................***Failed 0.05 sec Total = 8 5 ERROR STOP Error termination. Backtrace: #0 0x7f7014e23e59...
https://github.com/lfortran/lfortran/actions/runs/18220881046/job/51880367036?pr=8657 ``` ... 1908/1983 Test #1909: openmp_58 ..........................................***Failed 0.05 sec Total = 8 5 ERROR STOP Error termination. Backtrace: #0 0x7fbc80c23e59 in ??? #1 0x7fbc80c24a71 in ??? #2 0x7fbc80c2610b in...
https://github.com/lfortran/lfortran/actions/runs/19903049328/job/57051927915?pr=8964 ``` 379/1955 Test #382: array_constructor_02_STD_F23 ...............................Subprocess aborted***Exception: 0.01 sec ... The following tests FAILED: 382 - array_constructor_02_STD_F23 (Subprocess aborted) ``` It's on macOS with LLVM 21. I can't reproduce...
We are getting a lot of failures that after 1h of running a job, we try to access github or other website, there is some network problem, and the job...
We have at least the following two options: * Runtime: we store the rank and descriptor at runtime. `size(x)` just queries the descriptor. `select rank` queries the descriptor at runtime....
The code is from https://fortran-lang.discourse.group/t/euler-conjecture-and-cdc-6600/10501/67: ```fortran ! 27^5 + 84^5 + 110^5 + 133^5 = 144^5 program euler use, intrinsic :: iso_fortran_env, only: int64 implicit none integer(int64) :: i,j, k,...