climate_indices icon indicating copy to clipboard operation
climate_indices copied to clipboard

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

Open monocongo opened this issue 5 years ago • 1 comments

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 avatar Jun 17 '19 14:06 monocongo

See this issue for details.

monocongo avatar Jun 20 '19 01:06 monocongo