Ondřej Čertík

Results 1482 comments of Ondřej Čertík

From a practical perspective, we already use both CMake and manual Makefiles for `stdlib` (because people have requested both) and now we also want to use `fpm`. I have the...

I agree. I only posted it here to keep it in mind.

What would be a good behavior for the end user for the cmake backend? Perhaps ``` fpm generate --cmake ``` and it would create (or override) proper `CMakeLists.txt` files for...

There is one counter argument: for functions like `my_matmul(m, k, n, A, B, C)` where `A(m,k)`, etc., we want the compiler to be (eventually) checking the consistency of calls like...

After further discussion with @rebcabin, it seems the current design of having the expression part of the type might be optimal: if possible to check at compile time, then it...

Right now LSP should only be used when `lfortran server` is used. We can add a specific option under `lfortran server` to emit or not emit the log file. TODO:...

The reason this issue is a blocker is because the conda package builds LFortran with `-DWITH_LSP=yes` and thus it creates this log file for EVERY compilation. Which is insane and...

Current status: * The log file is not created by default, unless the option `--enable-logging` is provided * The main issue is thus fixed However there is still a bug...

It looks like it should be a pointer to StructType, and we have to tackle this correctly in serialization/deserialization.

Note: the reworked `array_op` pass by @czgdp1807 and @gxyd should be smart enough to rewrite: ``` test_condition = (x**2 + x == y*(x + abs(y + f(x)))) ! temporary array...