Ivan Pribec
Ivan Pribec
I wonder if their is clash between the [meson](https://mesonbuild.com/Configuration.html)/[CMake](https://cmake.org/cmake/help/latest/command/configure_file.html) configuration preprocessor syntax and fypp, due to the use of the '@' symbol?
A few more linting tools: - [fortran-linter](https://pypi.org/project/fortran-linter/) - [linter-gfortran](https://atom.io/packages/linter-gfortran) (Atom plugin) - [Cleanscape FortranLint](https://stellar.cleanscape.net/products/fortranlint/) (commercial) A short evaluation of the tools is given in the following blog post: > [Screening...
Digging deeper into TensorFlow as an example, they have some documents on how to build bindings for other languages through the C api: * [TensorFlow in other languages](https://github.com/tensorflow/docs/blob/master/site/en/r1/guide/extend/bindings.md) * [C...
Very cool that NVIDIA is involved. I see one just needs to define a model and the input/output layers: ```fortran type(torch_module) :: torch_mod type(torch_tensor) :: in_tensor, out_tensor ``` The tensors...
On *nix platforms at least, it may be possible to use [libtool](https://www.gnu.org/software/libtool/) as an intermediary.
Should there be a command line syntax for this too? In many cases preprocessor variables are used to deal with platform specific issues (e.g. a processor or compiler supports certain...
Indeed, Cargo build scripts can receive input through a `CARGO_CFG_`variable, and have the possibility to communicate configuration settings back using the instructions ``` cargo:rustc-cfg=KEY[="VALUE"] — Enables compile-time cfg settings. ```...
I'd be interested to come-up with some ideas for better LAPACK and BLAS support in fpm. Here are a few issues I'm currently running into: * Conflicting library/compiler versions; this...
> But I was wondering what prompted the desire, as maybe there are a few other changes to fpm(1) that would help even in the DOS Programming Environment. Assuming it...
Cool! I would need a day to understand how or why that bash scripts works :joy:. (hopefully we can find some reviewers for PR's) How does one ship such a...