-
-
Notifications
You must be signed in to change notification settings - Fork 37
Description
Recently, while working with the blosc2 module in Python, I encountered an error message that said: 'Exception ignored in: 'blosc2.blosc2_ext.NDArray.dealloc''.
This message indicates that there is some issue related to the deallocation of an object of the NDArray class in the blosc2 module. It is important to note this as it could be an indication of other potential issues within the code related to memory management or the use of NDArray objects in the blosc2 module.
It is interesting to note that when I execute only code involving Numba, this error does not occur. This suggests that the issue could be specifically related to the interaction between Numba and the blosc2 module.
" TypeError: 'NoneType' object is not callable
Exception ignored in: 'blosc2.blosc2_ext.NDArray.dealloc' "
https://github.com/omaech/python-blosc2/blob/lazy-expr/blosc2/my_numba.py