Graham Markall
Graham Markall
From https://numba.readthedocs.io/en/stable/reference/pysupported.html#exception-handling: > Currently, exception objects are not materialized inside compiled functions. As a result, it is not possible to store an exception object into a user variable or to...
@sivecow as a workaround, you can add `error_model="numpy"` to the `njit` decorator to prevent the zero division error being raised, like: ```python @nb.njit(fastmath=True, error_model="numpy") ``` This should allow you to...
The action required on the Numba side here: we need to change the error message about reaching an unreachable condition for one that more clearly explains what has happened (reraise...
Thanks for the bug report and reproducer! I'm still getting my head around why `np.vectorize` behaves the way it does here, apparently interpreting the whole list as integers, so I'll...
I don't have a Windows system handy right now to check reproduction, but from the traceback I can see there's an issue. Thanks for the report!
It seems to be possible to create a folder with curly braces on Linux too, so this may also be reproducible on Linux (this is yet to be tested).
Do you have `numba-cuda` installed? Guidelines for installing it are in https://nvidia.github.io/numba-cuda/user/installation.html numba-cuda is where continued development of the CUDA target proceeds - for more info see: https://numba.readthedocs.io/en/stable/cuda/overview.html#cuda-deprecation-status If issues...
This should be continued... Just merged the latest `main` to see why there were CI fails before.
I can't find anything in the issue tracker about iterating over an empty tuple - typing issues to do with the construction of empty lists / dicts have come up...
A quick question on this (to other maintainers as much as the author): > This means adding the descriptor to `arystruct_t`. At first glance this seems invasive, but all the...