monocongo / climate_indices

Climate indices for drought monitoring
https://monocongo.github.io/climate_indices/
Other
353 stars 167 forks source link

Add "nopython=True" to @numba.jit annotations #324

Open monocongo opened 5 years ago

monocongo commented 5 years ago

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.

monocongo commented 5 years ago

See this issue for details.