The use of numba.jit without the nopython=True kwarg means that the compiler can fall back to object mode (this pattern is being deprecated) and as a result of this the performance of the compiled function is unlikely to be a) stable and b) anywhere near optimal.
The use of
numba.jit
without thenopython=True
kwarg means that the compiler can fall back to object mode (this pattern is being deprecated) and as a result of this the performance of the compiled function is unlikely to be a) stable and b) anywhere near optimal.