Siu Kwan Lam
Siu Kwan Lam
we should leave this issue open.
I am not certain but the `-msvc` should cause LLVM to produce COFF but does `gcc` accept that? Is this the inverse problem that you need `-elf` for gcc to...
First, it's important to note that caching is not supported in neither cases. The use of ctypes pointer results in a binary that refrences to pointers that are dynamically created....
You can use the extension API to take over the C-symbol linking. For example https://github.com/numba/numba/blob/658d387562fb63459e83f3c1b8b31b51a368ccfe/numba/np/ufunc/parallel.py#L701-L717 and the binding of the symbol into the current process in: https://github.com/numba/numba/blob/658d387562fb63459e83f3c1b8b31b51a368ccfe/numba/np/ufunc/parallel.py#L538 This is like...
Auto-formatters do not fix anti-patterns that flake8 can find. For example `Redefinition of unused name from line n (F811)`. So consideration for them should be orthogonal.
This has to do with how `cloudpickle` behaves when a class is defined in the `__main__` module vs in others. The fix is to move the `HeapStruct` structref definition into...
> Is it the last hurdle to 0.61 final release? We are also waiting for RC testers to report back. Since RC2 came out just before the holidays, we should...
Removing this PR from the 0.61.0final milestone since this is a too involved fix for the final release. We should consider this PR for 0.61.1 instead.
No, it's moved to 0.62. We opt for a minimal patch in 0.61.1 (https://github.com/numba/numba/pull/9887) to address the issue. This PR is too big for a bugfix release.
> @sklam I believe this affects #1051. Do you have any thoughts on the changes in `llvmlite/ir/types.py` to `PointerType` to accommodate`from_llvm` on opaque pointers? Looks good. The usecase is solely...