Siu Kwan Lam

Results 276 comments of Siu Kwan Lam

@vlipovac, I have a few questions to better understand your use case: 1. When LLVM fails to allocate space, how many njit functions are present in `CompiledUnifiedFlash.residuals`? 2. How many...

Leaving note for implementor: We should try to model the python API like the LLVM C-API Attribute insertion: https://llvm.org/doxygen/group__LLVMCCoreValueFunction.html ``` LLVM_C_ABI void LLVMAddAttributeAtIndex (LLVMValueRef F, LLVMAttributeIndex Idx, LLVMAttributeRef A) LLVM_C_ABI...

@Madot10, to help us investigate this: - can you send us the full traceback? - can you send us the list of packages in the environment from `conda list --explicit`?

@flying-sheep, `sys.monitoring` support is off by default with 0.61. It should stop numba from crashing debuggers. Also part of the bug is in CPython and debuggers to recognize not all...

The code needed in CPython was added in https://github.com/python/cpython/pull/116413, but we have yet to adapt to it.

They look like harmless un-freed objects in LLVM because these objects are process-wide for Numba. At Python interpreter shutdown, the freeing of these objects are bypassed. These objects are not...