SciPy VS Numba

Compare SciPy vs Numba and see what are their differences.

Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
SciPy Numba
50 124
12,431 9,432
1.7% 1.8%
9.9 9.9
4 days ago 7 days ago
Python Python
BSD 3-clause "New" or "Revised" License BSD 3-clause "New" or "Revised" License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

SciPy

Posts with mentions or reviews of SciPy. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-03-04.
  • What Is a Schur Decomposition?
    2 projects | news.ycombinator.com | 4 Mar 2024
    I guess it is a rite of passage to rewrite it. I'm doing it for SciPy too together with Propack in [1]. Somebody already mentioned your repo. Thank you for your efforts.

    [1]: https://github.com/scipy/scipy/issues/18566

  • Fortran codes are causing problems
    2 projects | /r/rstats | 13 Sep 2023
    Fortran codes have caused many problems for the Python package Scipy, and some of them are now being rewritten in C: e.g., https://github.com/scipy/scipy/pull/19121. Not only does R have many Fortran codes, there are also many R packages using Fortran codes: https://github.com/r-devel/r-svn, https://github.com/cran?q=&type=&language=fortran&sort=. Modern Fortran is a fine language but most legacy Fortran codes use the F77 style. When I update the R package quantreg, which uses many Fortran codes, I get a lot of warning messages. Not sure how the Fortran codes in the R ecosystem will be dealt with in the future, but they recently caused an issue in R due to the lack of compiler support for Fortran: https://blog.r-project.org/2023/08/23/will-r-work-on-64-bit-arm-windows/index.html. Some renowned packages like glmnet already have their Fortran codes rewritten in C/C++: https://cran.r-project.org/web/packages/glmnet/news/news.html
  • [D] Which BLAS library to choose for apple silicon?
    2 projects | /r/MachineLearning | 24 May 2023
    There are several lessons here: a) vanilla conda-forge numpy and scipy versions come with openblas, and it works pretty well, b) do not use netlib unless your matrices are small and you need to do a lot of SVDs, or idek why c) Apple's veclib/accelerate is super fast, but it is also numerically unstable. So much so that the scipy's devs dropped any support of it back in 2018. Like dang. That said, they are apparently are bring it back in, since the 13.3 release of macOS Ventura saw some major improvements in accelerate performance.
  • SciPy: Interested in adopting PRIMA, but little appetite for more Fortran code
    8 projects | news.ycombinator.com | 18 May 2023
    First, if you read through that scipy issue (https://github.com/scipy/scipy/issues/18118 ) the author was willing and able to relicense PRIMA under a 3-clause BSD license which is perfectly acceptable for scipy.

    For the numerical recipes reference, there is a mention that scipy uses a slightly improved version of Powell's algorithm that is originally due to Forman Acton and presumably published in his popular book on numerical analysis, and that also happens to be described & included in numerical recipes. That is, unless the code scipy uses is copied from numerical recipes, which I presume it isn't, NR having the same algorithm doesn't mean that every other independent implementation of that algorithm falls under NR copyright.

  • numerically evaluating wavelets?
    1 project | /r/math | 3 May 2023
  • Fortran in SciPy: Get rid of linalg.interpolative Fortran code
    1 project | news.ycombinator.com | 27 Apr 2023
  • Optimization Without Using Derivatives
    2 projects | news.ycombinator.com | 21 Apr 2023
    Reading the discussions under a previous thread titled "More Descent, Less Gradient"( https://news.ycombinator.com/item?id=23004026 ), I guess people might be interested in PRIMA ( www.libprima.net ), which provides the reference implementation for Powell's renowned gradient/derivative-free (zeroth-order) optimization methods, namely COBYLA, UOBYQA, NEWUOA, BOBYQA, and LINCOA.

    PRIMA solves general nonlinear optimizaton problems without using derivatives. It implements Powell's solvers in modern Fortran, compling with the Fortran 2008 standard. The implementation is faithful, in the sense of being mathmatically equivalent to Powell's Fortran 77 implementation, but with a better numerical performance. In contrast to the 7939 lines of Fortran 77 code with 244 GOTOs, the new implementation is structured and modularized.

    There is a discussion to include the PRIMA solvers into SciPy ( https://github.com/scipy/scipy/issues/18118 ), replacing the buggy and unmaintained Fortran 77 version of COBYLA, and making the other four solvers available to all SciPy users.

  • What can I contribute to SciPy (or other) with my pure math skill? I’m pen and paper mathematician
    5 projects | /r/Python | 17 Apr 2023
  • Emerging Technologies: Rust in HPC
    3 projects | /r/rust | 24 Mar 2023
    if that makes your eyes bleed, what do you think about this? https://github.com/scipy/scipy/blob/main/scipy/special/specfun/specfun.f (heh)
  • Python
    3 projects | /r/ProgrammerHumor | 29 Dec 2022

Numba

Posts with mentions or reviews of Numba. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-09-27.
  • Mojo🔥: Head -to-Head with Python and Numba
    2 projects | dev.to | 27 Sep 2023
    Around the same time, I discovered Numba and was fascinated by how easily it could bring huge performance improvements to Python code.
  • Is anyone using PyPy for real work?
    13 projects | news.ycombinator.com | 31 Jul 2023
    Simulations are, at least in my experience, numba’s [0] wheelhouse.

    [0]: https://numba.pydata.org/

  • Any data folks coding C++ and Java? If so, why did you leave Python?
    1 project | /r/quant | 12 Jul 2023
    That's very cool. Numba introduces just-in-time compilation to Python via decorators and its sole reason for being is to turn everything it can into abstract syntax trees.
  • Using Matplotlib with Numba to accelerate code
    1 project | /r/pythonhelp | 22 Jun 2023
  • Python Algotrading with Machine Learning
    4 projects | dev.to | 30 May 2023
    A super-fast backtesting engine built in NumPy and accelerated with Numba.
  • PYTHON vs OCTAVE for Matlab alternative
    3 projects | /r/math | 22 May 2023
    Regarding speed, I don't agree this is a good argument against Python. For example, it seems no one here has yet mentioned numba, a Python JIT compiler. With a simple decorator you can compile a function to machine code with speeds on par with C. Numba also allows you to easily write cuda kernels for GPU computation. I've never had to drop down to writing C or C++ to write fast and performant Python code that does computationally demanding tasks thanks to numba.
  • Codon: Python Compiler
    9 projects | news.ycombinator.com | 8 May 2023
    Just for reference,

    * Nuitka[0] "is a Python compiler written in Python. It's fully compatible with Python 2.6, 2.7, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 3.10, and 3.11."

    * Pypy[1] "is a replacement for CPython" with builtin optimizations such as on the fly JIT compiles.

    * Cython[2] "is an optimising static compiler for both the Python programming language and the extended Cython programming language... makes writing C extensions for Python as easy as Python itself."

    * Numba[3] "is an open source JIT compiler that translates a subset of Python and NumPy code into fast machine code."

    * Pyston[4] "is a performance-optimizing JIT for Python, and is drop-in compatible with ... CPython 3.8.12"

    [0] https://github.com/Nuitka/Nuitka

    [1] https://www.pypy.org/

    [2] https://cython.org/

    [3] https://numba.pydata.org/

    [4] https://github.com/pyston/pyston

  • This new programming language has the potential to make python (the dominant language for AI) run 35,000X faster.
    1 project | /r/singularity | 5 May 2023
    For the benefit of future readers: https://numba.pydata.org/
  • Two-tier programming language
    6 projects | /r/ProgrammingLanguages | 19 Apr 2023
    Taichi (similar to numba) is a python library that allows you to write high speed code within python. So your program consists of slow python that gets interpreted regularly, and fast python (fully type annotated and restricted to a subset of the language) that gets parallellized and jitted for CPU or GPU. And you can mix the two within the same source file.
  • Numba Supports Python 3.11
    1 project | news.ycombinator.com | 22 Mar 2023

What are some alternatives?

When comparing SciPy and Numba you can also consider the following projects:

SymPy - A computer algebra system written in pure Python

NetworkX - Network Analysis in Python

statsmodels - Statsmodels: statistical modeling and econometrics in Python

jax - Composable transformations of Python+NumPy programs: differentiate, vectorize, JIT to GPU/TPU, and more

NumPy - The fundamental package for scientific computing with Python.

Dask - Parallel computing with task scheduling

Pandas - Flexible and powerful data analysis / manipulation library for Python, providing labeled data structures similar to R data.frame objects, statistical functions, and much more

cupy - NumPy & SciPy for GPU

astropy - Astronomy and astrophysics core library

Pyjion - Pyjion - A JIT for Python based upon CoreCLR

or-tools - Google's Operations Research tools: