numba.core.errors.TypingError: Failed in nopython mode pipeline (step: nopython frontend)
Failed in nopython mode pipeline (step: nopython frontend)
Internal error at <numba.core.typeinfer.CallConstraint object at 0x000002BD5287C750>.
“Unrecognized options: {‘cashe’}. Known options are dict_keys([‘_dbg_extend_lifetimes’, ‘_dbg_optnone’, ‘_nrt’, ‘boundscheck’, ‘debug’, ‘error_model’, ‘fastmath’, ‘forceinline’, ‘forceobj’, ‘inline’, ‘looplift’, ‘no_cfunc_wrapper’, ‘no_cpython_wrapper’, ‘no_rewrites’, ‘nogil’, ‘nopython’, ‘parallel’, ‘target_backend’])”
During: resolving callee type: type(CPUDispatcher(<function noise2 at 0x000002BD48C71120>)).
Here is the noise2 function itself -
from numba import njit
from opensimplex.internals import _noise2, _noise3, _init
perm, perm_grad_index3 = _init(seed=SEED)
@njit(cashe=True)
def noise2(x, y):
return _noise2(x, y, perm)
At the same time, everything works without cashe=True