7 Things You Might Not Know about Numba

Originally published at: 7 Things You Might Not Know about Numba | NVIDIA Technical Blog

Numba is a Python compiler from Anaconda that can compile Python code for execution on CUDA-capable GPUs or multicore CPUs. Numba allows automatic just-in-time (JIT) compilation of Python functions, which can provide orders of magnitude speedup for Python and Numpy data processing. Numba also provides CUDA Python, an API for writing CUDA kernels in the…