Ondřej Čertík

Results 365 issues of Ondřej Čertík

Currently I think it can't be disabled.

The example in https://github.com/lfortran/lfortran/issues/3898 gives an error with incorrect location: ```console semantic error: function interface must be specified explicitly; you can enable implicit interfaces with `--implicit-interface` --> a.f90:31:41 | 31...

bug

I think this bug has something to do with indexing of module arrays. This fails: ```fortran program a use iso_fortran_env integer :: i do i = 1, size(real_kinds) print *,...

bug

```console $ git clone https://github.com/Unidata/netcdf-fortran $ cd netcdf-fortran $ mamba create -n netcdf lfortran cmake make netcdf4 $ conda activate netcdf $ FFLAGS="--cpp" FC=lfortran cmake . $ make [ 1%]...

We have "primitive" types like Integer, Real, Complex. And non-primitive types: Array, List, Dict, Set, String, Class, Struct The non-primitive types require some kind of deallocation or freeing, even if...

asr

We currently have the following non-primitive types: `Character` (`String`), `Set`, `List`, `Tuple`, `Struct`, `Union`, `Class`, `Dict`, `SymbolicExpression`, `Array`, `Allocatable`. We want to keep these `ttypes` in ASR, so that the...

```fortran program mandelbrot implicit none integer, parameter :: dp = kind(0.d0) real(dp), parameter :: D = 0.035_dp integer :: ix, iy, k complex(dp) :: c, z logical escaped do iy=-15,15...

bug

https://github.com/lfortran/lfortran/actions/runs/8674637022/job/23787175142 ``` 531/1048 Test #531: modules_54 ............................... Passed 0.01 sec 532/1048 Test #532: modules_55 ............................... Passed 0.01 sec 533/1048 Test #533: modules_56 ...............................***Failed 0.01 sec T ERROR STOP Error termination....

Minimal example: ```f90 program t call print_generic("abc") call print_generic(5) contains subroutine print_generic(generic) class(*), intent(in), optional :: generic select type(generic) type is (character(len=*)) call f(generic) end select ! This should not...

bug
generics

For `neural-fortran` I had to do the following line to pickup the hdf5 dependency from Conda: ``` $ fpm run --example cnn_mnist --profile release --flag "-fno-frontend-optimize -I$CONDA_PREFIX/include -L$CONDA_PREFIX/lib -Wl,-rpath -Wl,$CONDA_PREFIX/lib"...