ARF1
ARF1
Implicitly closes #66 and #176 by allowing users to "bring their own" implementations. Would benefit from #189. This introduces an abstraction layer for the generation of the "results array" in...
Among others, this allows improving the performance of custom implementations of the ctable out_flavor abstraction layer #187.
`chunk._getitem(...)` depends on and modifies instance attributes of `chunk`. The consequence is that in multi-threaded applications access to the `chunk` instance has to be controlled by locking which prevent multi-threaded...
Closes #176. Simplifies implementation of #66. Summary: - introduction of an abstraction layer for the "results array" - implementation of a numpy specialisation of the abstraction layer - implementation of...
I followed the instructions for building on windows in the docs directory making use of the pre-built dependencies and installing folly with `vcpkg`. However when then building glow, I encounter...
Completes implementations of `load` and `store` to support all features. Merges atomic load/store with regular load/store. Fixes #450. Incorporated PRs: - closes #559 - closes #565 This builds on @ssikdar1's...
Permit setting StringAttribute on functions. Prerequisite for fixing numba/numba#5067 and numba/numba#5139. Incorporates PRs: - closes #565
If one calls `python setup.py build` the directory `ffi/build` is created. `python setup.py clean --all` does not remove it however. This is a problem because stale builds can persist. For...
The manual specifies that `cmake` is required to build `llvmlite`. That said, the error message that is shown if it happens to be missing could be made clearer: ``` Trying...