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

    Numba-compiled numerical algorithms in Python can approach the speeds of C or FORTRAN. You don't need to replace the Python interpreter, run a separate compilation step, or even have a C/C++ …

  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-compiled numerical algorithms in Python can approach the speeds of C or FORTRAN. You don't need to replace the Python interpreter, run a separate compilation step, or even have a C/C++ …

  4. A ~5 minute guide to Numba - PyData

    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 collection of decorators …

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

    Introduction to numba ¶ Numba allows the compilation of selected portions of Python code to native code, using llvm as its backend. This allows the selected functions to execute at a speed competitive …

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

    We are now uploading packages to the numba channel on Anaconda Cloud for 32-bit little-endian, ARMv7-based boards, which currently includes the Raspberry Pi 2 and 3, but not the Pi 1 or Zero.

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

    Numba excels at generating code that executes on top of NumPy arrays. NumPy support in Numba comes in many forms: Numba understands calls to NumPy ufuncs and is able to generate equivalent …

  8. Numba for CUDA GPUs — Numba 0.52.0.dev0+274.g626b40e-py3.7 …

    OUTDATED DOCUMENTATION You are viewing archived documentation from the old Numba documentation site. The current documentation is located at https://numba.readthedocs.io.

  9. NumPy and numba — numba 0.12.0 documentation - PyData

    Numba generated code will evaluate the full expression in one go, for each element. The numba approach approach avoids having temporal intermmediate arrays built, as well as avoiding revisiting …

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

    Improving the string performance is an ongoing task, but the speed of CPython is unlikely to be surpassed for basic string operation in isolation. Numba is most successfully used for larger …