ZUO Zhihua
ZUO Zhihua
> Any correction/improvement will involve a lot of copy-paste... but this is not a problem of the code - it's rather Fortran's way. @HugoMVale, yes, I agree with you. In...
Actually, I think `LHS` is the most efficient, it only involves fewer operations; but I also feel that `allocate(.., source=..)` will be optimized by the compiler, I tried to write...
Using `all`, for `real` numbers, we need to construct the following judgments, ````fortran call check(error, all((abs(array - expected) < abs_tol)), ...) ```` And when dealing with **relative** differences, it becomes...
Given that Fortran-2023 has been released, the line length limit has been relaxed to 10,000 characters, and ifort, ifx are open for this by default, and [GFortran already implements the...
> Fortran-stdlib does not address enabling OpenBLAS or other implementations in CMake yet. Current focus is to implement linear algebra subroutines, that will come next. Fortran-stdlib requires reasonable references to...
> * /src/sing_step/art_heat.f90 中的人工热量计算的实现方式似乎也和公式不符合 好的,感谢标明
Thank you for your invitation @awvwgk , we have been following fpm trends and are interested in contributing Chinese local translations to it.
This does exist, and is an unfulfilled issue for meson, see https://github.com/mesonbuild/meson/issues/5374. The options are to follow [this scheme suggested](https://github.com/mesonbuild/meson/issues/5374#issuecomment-830662831) and [this `meson.build`](https://github.com/fortran-lang/minpack/blob/91d88e90c033842c989d2cabe3bc43eb8e79a6cd/meson.build#L57), or just move the `*.mod` files manually.
For Windows compatibility and inspired by you, the following `meson.build` diff works in Windows-MSYS2, considering that the dynamic link library suffix is `.dll` under Windows. I will verify it later...
`fpm` is currently in **alpha** phase, and it is better to use `fpm` `dependencies` in `fpm` projects. If your project is small, you can use `fpm`(0.8.0) as a build tool...