Unable to use numpy.dot with numba
Advertisements I am getting errors trying to run numpy.dot with numba. It seems to be supported (eg: numpy: Faster np.dot/ multiply(element-wise multiplication) when one array is the same) but eg this code gives me the following error (it runs fine if I remove the njit part) Code: import numpy as np import numba @numba.njit() def… Read More Unable to use numpy.dot with numba