forlab
forlab copied to clipboard
Forlab is a Fortran module that provides a lot of functions for scientific computing mostly inspired by Matlab and Python's package NumPy.
FORLAB
FORLAB is a Fortran module that provides some functions for scientific computing.
It's more like a small toolbox.
FORLAB uses stdlib as an upstream package. FORLAB hopes to be a small scaffolding tool. Compared with stdlib, FORLAB is less formal.
| Version: | 1.0.2 |
| Author: | FORLAB Contributors |
| Web site: | https://github.com/fortran-fans/forlab |
| API-Doc Web site: | https://zoziha.github.io/forlab-API-doc/ |
| Copyright: | This document has been placed in the public domain. |
| License: | FORLAB is released under the MIT License. |
Getting Started (中文文档)
Get the code
git clone https://github.com/fortran-fans/forlab.git
cd forlab
Supported Compilers
The following combinations are tested on the default branch of forlab:
| Name | Vesrion | Platform | Architecture |
|---|---|---|---|
| GCC Fortran(MSYS2) | 10 | Windows 10 | x86_64 |
| GCC Fortran | 10 | Ubuntu | x86_64 |
| GCC Fortran | 10 | MacOS | x86_64 |
Build with fortran-lang/fpm
Fortran Package Manager (fpm) is a great package manager and build system for Fortran.
You can build using provided fpm.toml:
fpm build
fpm test --list
fpm test <test_name, see `fpm.toml` or list>
To use forlab within your fpm project, add the following to fpm.toml file:
[dependencies] # or [dev-dependencies] for tests.
forlab = { git="https://github.com/fortran-fans/forlab.git", branch="forlab-fpm" }
API-Doc
ford API-doc-FORD-file.md # todo
see forlab-API-doc.
Some examples are prepared in the ./example folder, and you can use fpm to run them.
fpm run --example --list
fpm run --example <demo_name, see `fpm.toml` or list>
More informations
Links
- keurfonluu/Forlab
Forlab is mainly developed by Keurfon Luu originally. - stdlib
Fortran standard library. - Fortran Generics
Fypp
The original intention of developing the multi-precision library(forlab) is
to facilitate the user to switch the program accuracy requirements in a timely manner,
which is challenging. We use fypp to build a multi-precision forlab.
I have to say that fypp has helped us a lot. I learned that the use of code
to generate code is called meta-programming. I also think that metaprogramming
has great potential, especially for some low-level polymorphic functions and
improving the dynamics of statically compiled languages, which is very helpful.
I hope that fypp will get better and better, and that fortran will natively
support meta-programming technology in the future.
The problems we encountered
- The adaptability of
fortranmetaprogramming ability is not strong; - Modular development
moduleand settingsubmoduleshould best be combined effectively to improve development efficiency. - We don't want
forlabto increase its volume unlimitedly. We hope that it can be used in areas where it can achieve value, such as rapid development of fortran automation applets. So we will keep the forlab lightweight, and update and repair it from time to time. - Fpm currently has some problems and pain points when compiling the program (But we are very optimistic about the potential of
fpm):- Slow compilation speed. (Improvements in this PR: optimize file listing)
- Cannot manage and distribute
fpmpackages well now.
- Fortran Generics: Due to the lack of more complete generics, certain functions such as multiple precision and multiple array dimensions cannot be implemented now.