Ivan Pribec
Ivan Pribec
There is an open issue at GodBolt to support fpm: https://github.com/compiler-explorer/compiler-explorer/issues/3919
I've added a few from the Python wiki. It would be interesting to learn what the standards committee thinks of this. There seems to be huge interest in using Fortran...
Another route is to use [pybind11](https://github.com/pybind/pybind11) and follow the path Fortran --> C --> C++ --> Python. It was demonstrated by @hsnyder on Discourse: https://fortran-lang.discourse.group/t/iso-c-binding-pass-an-array-from-c-to-fortran-edit-python-interop-content/514/8
> Finally, your proposed Parallel Programming book is a **Coarray** Parallel Programming book - I want to ask whether we are going to additionally cover _MPI_, _OpenMP_, and _OpenACC_ as...
> ## Question: filling a character string > > I have my own related question for strings: Is there a one-liner for filling a character(*) with a non-space character(1)? >...
I've made a small example on [Godbolt](https://godbolt.org/z/7zKczYbE5), using the function: $$f(x,p_k) = x \sin(x) - p_k$$ The assembly for the scalar function is: ```txt test_mp_f_: push rbx #24.10 sub rsp,...
I noticed SciPy actually had the same issue (https://github.com/scipy/scipy/issues/13737) and they introduced a sign-bit comparison to avoid the test failing due to underflow/overflow.
Hi @giannilmbd, You can do this by extending Jacob's modules and "attaching" a new interface: ```fortran module rootx_module use root_module, only: root_scalar_original => root_scalar, func2, & wp => root_module_rk implicit...
I wonder if it's possible to write a cpp/fpp or fypp _macro_ which would cover most of the wrapping for a specific procedure callback abstract interface. Aside from the callback...
What are some of the design points for derivative-based root-finding methods? * Methods - Newton-Raphson - Halley - Schröder - Secant method and Steffensen's method (using the derivatives of the...