awesome-repositories.com
Blog
MCP
awesome-repositories.com

Discover the best open-source repositories with AI-powered search.

ExploreCurated searchesOpen-source alternativesSelf-hosted softwareBlogSitemap
ProjectMCP serverAboutHow we rankPress
LegalPrivacyTerms
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com

Fortran Libraries for Scientific Computing

Ranking updated Jun 30, 2026

For a Fortran library for numerical scientific computing, the first results are fortran-lang/stdlib, reference-lapack/lapack and gonum/gonum (Gonum is a numerical computing library for Go, not Fortran, so it fills a similar role in a different language rather than being a Fortran library itself). xianyi/openblas and openmathlib/openblas round out the shortlist. Compare the match explanations and check the project documentation against your requirements.

We curate open-source GitHub repositories matching “Fortran libraries for scientific and numerical computing”. Results are ranked by relevance to your query — pick filters below to narrow, or refine with AI.

Fortran Libraries for Scientific Computing

Find the best repos with AI.We'll search the best matching repositories with AI.
  • fortran-lang/stdlibfortran-lang avatar

    fortran-lang/stdlib

    1,322View on GitHub↗

    This project is a community-driven standard library for the Fortran programming language, providing a comprehensive collection of algorithms, data structures, and system utilities. It is designed to extend the language's native capabilities, offering a unified toolkit for scientific computing, numerical analysis, and general-purpose programming. The library distinguishes itself through a modular architecture that utilizes generic interface dispatch and compile-time specialization to ensure high performance across various data types. It provides standardized abstractions for external numerical

    fortran-lang/stdlib is the official Fortran standard library, providing core numerical routines such as linear algebra (BLAS/LAPACK), random number generation, and statistics, but it is still under development and does not yet include dedicated solvers for differential equations, optimization, FFT, or parallel computing support.

    FortranStandard LibrariesLinear Algebra RoutinesMathematical Function Implementations
    View on GitHub↗1,322
  • reference-lapack/lapackReference-LAPACK avatar

    Reference-LAPACK/lapack

    1,808View on GitHub↗

    LAPACK is a comprehensive library of Fortran routines designed for high-performance numerical analysis and linear algebra. It serves as a foundational scientific computing framework, providing standardized procedures for solving systems of linear equations, eigenvalue problems, and least squares approximations. The library distinguishes itself through a hierarchical routine abstraction that organizes mathematical operations into distinct levels of complexity. It utilizes block-partitioned matrix algorithms and a column-major memory layout to optimize data locality and hardware efficiency. By

    LAPACK is the standard Fortran library for linear algebra (BLAS/LAPACK), providing routines for solving linear equations, eigenvalue problems, and matrix factorizations, which fits the search for Fortran numerical computing libraries but only covers the linear algebra aspect of the required features.

    FortranLinear Algebra Libraries
    View on GitHub↗1,808
  • gonum/gonumgonum avatar

    gonum/gonum

    8,316View on GitHub↗

    Gonum is a numerical computing library for the Go programming language, providing a collection of packages for scientific computing, linear algebra, statistics, and optimization. It functions as a framework for performing complex numerical computations and solving systems of linear equations. The project includes a dedicated graph analysis framework for modeling network graphs and solving connectivity and pathfinding problems. It also provides a statistical analysis toolkit for computing descriptive and inferential statistics and estimating mixture entropy. The library's capability surface c

    Gonum is a numerical computing library for Go, not Fortran, so it fills a similar role in a different language rather than being a Fortran library itself.

    GoLinear Algebra LibrariesStatistical Analysis LibrariesStatistical Analysis Libraries
    View on GitHub↗8,316
  • xianyi/openblasxianyi avatar

    xianyi/OpenBLAS

    7,475View on GitHub↗

    OpenBLAS is a high-performance library for basic linear algebra subprograms that provides optimized matrix and vector operations. It serves as a multi-architecture math backend and numerical computing framework designed to execute complex mathematical calculations and high-speed numerical analysis. The library functions as an optimized CPU math library that detects hardware at runtime to apply the most efficient operation kernels for the specific processor. It supports multiple CPU targets through a combination of optimized assembly and C implementations. The project covers high-performance

    OpenBLAS is a high-performance C library for BLAS operations, not a Fortran library itself, and it only covers linear algebra—not differential equations, optimization, FFT, or the broader numerics you are looking for.

    CLinear Algebra LibrariesLinear Algebra
    View on GitHub↗7,475
  • openmathlib/openblasOpenMathLib avatar

    OpenMathLib/OpenBLAS

    7,470View on GitHub↗

    OpenBLAS is a high-performance implementation of the Basic Linear Algebra Subprograms standard designed for numerical computing and matrix operations. It serves as a hardware-accelerated numerical library and optimized math kernel library, providing a computational engine for large-scale matrix multiplication and vector operations. The library distinguishes itself through the use of hand-tuned assembly kernels and SIMD instruction mapping, such as AVX and SVE, to maximize floating-point performance on specific CPU architectures. It features a multi-threaded framework that manages parallel exe

    OpenBLAS provides the foundational BLAS and LAPACK linear algebra routines used in Fortran scientific computing, but it is a focused low-level linear algebra library rather than a comprehensive Fortran numerical computing library covering differential equations, optimization, FFT, or statistics.

    CLinear Algebra LibrariesLinear Algebra
    View on GitHub↗7,470
  • scipy/scipyscipy avatar

    scipy/scipy

    14,474View on GitHub↗

    SciPy is a scientific computing library for Python that provides a comprehensive collection of mathematical algorithms and numerical tools for research and engineering. It functions as a high-performance numerical analysis framework, bridging high-level Python code with compiled C and Fortran routines to execute complex computations at hardware speeds. The library is built upon array-based data structures that utilize strided memory layouts to enable efficient data manipulation and slicing. By employing vectorized operation dispatch and linking to optimized hardware-specific linear algebra li

    SciPy is a Python library that wraps compiled Fortran routines for numerical computing, but the visitor asked for Fortran libraries themselves, so it is not a Fortran-native tool—it provides similar numerical capabilities but in the wrong language ecosystem.

    PythonDifferential Equation SolversLinear Algebra
    View on GitHub↗14,474
  • arrayfire/arrayfirearrayfire avatar

    arrayfire/arrayfire

    4,888View on GitHub↗

    ArrayFire is a hardware-agnostic compute framework and JIT-compiled tensor engine designed for high-performance numerical computing. It serves as a GPU numerical computing library and parallel signal processing toolkit that abstracts hardware backends, allowing the same codebase to execute across various GPU architectures and CPUs. The project distinguishes itself through a JIT engine that uses expression compilation to fuse operations and minimize memory overhead. It employs a deferred execution graph to optimize computation chains and provides interoperability primitives to share data and e

    ArrayFire is a high-performance GPU-accelerated numerical computing library that covers many requested features, but it is written in C++ with CUDA/OpenCL rather than Fortran, so it does not meet the language requirement.

    C++Fourier TransformsLinear Algebra Libraries
    View on GitHub↗4,888
  • xtensor-stack/xtensorxtensor-stack avatar

    xtensor-stack/xtensor

    3,748View on GitHub↗

    xtensor is a C++ multidimensional array library for numerical computing that provides N-dimensional containers with an interface mirroring the NumPy API. It utilizes a lazy evaluation expression engine to defer numerical computations until assignment, which minimizes memory allocations and intermediate copies. The library features a foreign memory array adaptor that allows it to wrap external buffers, such as NumPy arrays, to perform numerical operations in-place without duplicating data. It further optimizes performance through lazy broadcasting and a system that manages the lifetime of temp

    xtensor is a C++ multidimensional array library with NumPy-like interfaces, not a Fortran library, so it does not match this search for Fortran-based scientific computing tools.

    C++Fourier TransformsLinear Algebra LibrariesLinear Algebra
    View on GitHub↗3,748
Compare the top 10 at a glance
RepositoryStarsLanguageLicenseLast push
fortran-lang/stdlib1.3KFortranMITApr 28, 2026
reference-lapack/lapack1.8KFortranotherJan 20, 2026
gonum/gonum8.3KGobsd-3-clauseJan 12, 2026
xianyi/openblas7.5KCBSD-3-ClauseJun 25, 2026
openmathlib/openblas7.5KCBSD-3-ClauseJun 21, 2026
scipy/scipy14.5KPythonbsd-3-clauseFeb 20, 2026
arrayfire/arrayfire4.9KC++BSD-3-ClauseMar 7, 2026
xtensor-stack/xtensor3.7KC++BSD-3-ClauseJun 19, 2026

Related searches

  • a library for high performance scientific computing
  • a library for numerical analysis and computing
  • a collection of Julia packages for science
  • a C++ library for mathematical computations
  • an open source numerical computing environment
  • Numerical computing library
  • a javascript library for complex mathematical operations
  • a comprehensive mathematics reference for software developers