Siu Kwan Lam
Siu Kwan Lam
#417 added atomic load/store as separate implementation. Some refactoring could reduce code duplication as atomic and regular load/store are very similar.
Note: This example is intended for early adopters who has already been extending Numba's array features. This example should serve as a best practice guide as we design and stabilize...
Based on https://nextjournal.com/wolfv/how-fast-is-r-with-fastr-pythran Code in https://gist.github.com/sklam/91ec96caea7e2c437e965a53219306ad
Base on recent [main](https://github.com/numba/numba/commit/39f03307113eaf76f0b1308cfbe0c8bf78a5c3e9) branch. LLVM MCJIT do not release memory of finalized object: code to demonstrate MCJIT leak ```python from llvmlite import binding as llvm from llvmlite import ir...
Referring to https://github.com/numba/numba/pull/8429 and roughly this part https://github.com/numba/numba/pull/8429/files#diff-c07552e1b5f50e764b6bba45566846cd148aabdb103ba23bb82a993eeea38fcdR34-R37 To remove scraping of user profile information from Github and to only rely on user name in the git log.
## Feature request Suggested by @stuartarchibald during discussion on https://github.com/numba/numba/pull/8250 in the developer meeting. The `@overload` API should allow us to auto-generate tests that checks if the Numba implementations of...
## Feature request [PEP684](https://peps.python.org/pep-0684/) will allow subinterpreters to be properly isolated (separate module state, separate GIL) in Python 3.11. However, extension modules will need to be modified properly support subinterpreters;...
Changes testsuite to: - Add custom logic to write junit xml output using `--junit`. - Record test runtime and print them with `--show-timing`. - Record PID and active tests per...