numba icon indicating copy to clipboard operation
numba copied to clipboard

NumPy aware dynamic Python compiler using LLVM

Results 643 numba issues
Sort by recently updated
recently updated
newest added

Remove use of mk_unique_var in stencil.py for issue #8230 Stencil.py's code seems to be exercised by these unit tests: - python -m numba.runtests -v numba.tests.test_array_analysis.TestArrayAnalysis.test_stencilcall - python -m numba.runtests -v...

3 - Ready for Review

As suggested on [discourse](https://numba.discourse.group/t/how-to-call-the-externel-c-function-in-ir/1477/2), I'm extending the docs with information on how to call C functions from Numba

3 - Ready for Review

This meta issue lists the concrete tasks needed to implement half-precision floating type. (#4395). llvmlite: - [x] add `half` type numba: - [ ] add `float16` type and conversion to/from...

Task
feature_request

For example: ```python from numba import njit @njit(['(float32, float64)', '(float64, float32)']) def add(x, y): return x + y # (float64, float64) is an equal match for the (float32, float64) and...

discussion
bug - miscompile

a test for https://github.com/numba/numba/issues/8307

2 - In Progress

This typo has annoyed me for long enough. As in https://numpy.org/doc/stable/reference/c-api/generalized-ufuncs.html, it should be *Generalized*, not *Generialized*.

5 - Ready to merge
Effort - short

As title. `bin/pycc` has been deprecated for nearly 7 years, this removes it! Closes #8322

3 - Ready for Review
Effort - short

Since `pycc.main()` has been deprecated for almost 7 years (https://github.com/numba/numba/commit/7342cb9aa7aded02209605299dbbdbe377794078), it seems that the `pycc` script (shown below) should be removed or at least be archived in a way that...

feature_request

This did not handle either python or (un)boxing errors. This moves `early_exit_if` and `early_exit_if_null` into the `cgutils` module, and gives them docstrings.

4 - Waiting on reviewer
Effort - medium