About 50 results
Open links in new tab
  1. Numba: A High Performance Python Compiler

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

  2. Numba documentation — Numba 0.52.0.dev0+274.g626b40e-py3.7 …

    Numba documentation ¶ This is the Numba documentation. Unless you are already acquainted with Numba, we suggest you start with the User manual.

  3. Numba: A High Performance Python Compiler - PyData

    Numba makes Python code fast Numba is an open source JIT compiler that translates a subset of Python and NumPy code into fast machine code. Learn More Try Numba »

  4. A ~5 minute guide to Numba - PyData

    A ~5 minute guide to Numba ¶ Numba is a just-in-time compiler for Python that works best on code that uses NumPy arrays and functions, and loops. The most common way to use Numba is through its …

  5. 1.1. A ~5 minute guide to Numba — Numba 0.41.0 documentation

    1.1. A ~5 minute guide to Numba ¶ Numba is a just-in-time compiler for Python that works best on code that uses NumPy arrays and functions, and loops. The most common way to use Numba is through …

  6. First Steps with numba — numba 0.12.2 documentation - PyData

    Starting with numba version 0.12, it is possible to use numba.jit without providing a type-signature for the function. This functionality was provided by numba.autojit in previous versions of numba. The old …

  7. Supported Python features — Numba 0.52.0.dev0+274.g626b40e

    Constructs ¶ Numba strives to support as much of the Python language as possible, but some language features are not available inside Numba-compiled functions. Below is a quick reference for the …

  8. Installation — Numba 0.52.0.dev0+274.g626b40e-py3.7-linux …

    Compatibility ¶ Numba is compatible with Python 3.6 or later, and Numpy versions 1.15 or later. Our supported platforms are: Linux x86 (32-bit and 64-bit) Linux ppcle64 (POWER8) Windows 7 and later …

  9. Parallel Range — numba 0.11.0 documentation - PyData

    Parallel Range ¶ Numba implements the ability to run loops in parallel, similar to OpenMP parallel for loops and Cython’s prange. The loops body is scheduled in seperate threads, and they execute in a …

  10. Supported NumPy features — Numba 0.52.0.dev0+274.g626b40e …

    Supported NumPy features ¶ One objective of Numba is having a seamless integration with NumPy. NumPy arrays provide an efficient storage method for homogeneous sets of data. NumPy dtypes …