What Am I Doing Wrong With Numba Here?
I'm trying to learn how to use the Numba module. So far I haven't been able to get anything working because of some problem interfacing with NumPy. This is the code I'm running (fr
Solution 1:
Update to 0.53.1 works. It failed on 0.47.x as well for me. Seems more of numpy issue. One way to resolve install numpy >=1.20.0 and numba v>0.52.
More information on this issue: https://github.com/numba/numba/issues/6041
P.S: not sure if you still have this error, just wanted to update, was facing similar issue.
Post a Comment for "What Am I Doing Wrong With Numba Here?"