climate_indices
climate_indices copied to clipboard
Add "nopython=True" to @numba.jit annotations
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.
See this issue for details.