The wrong way to speed up your code with Numba
(pythonspeed.com)
from jnovinger@programming.dev to python@programming.dev on 21 Mar 2024 23:27
https://programming.dev/post/11771181
from jnovinger@programming.dev to python@programming.dev on 21 Mar 2024 23:27
https://programming.dev/post/11771181
#python
threaded - newest
I think it depends on how good your Numpy build is. Lot of Numpys are not that well built so Numba seems to help there too in that case.
For a python library to be fast it needs to be compiled for your specific hardware, vectorized, with fast math, and auto parallel. Most are probably not unless you build them youself.