Skip to content

Commit

Permalink
Remove generated_jit from africanus.util.numba
Browse files Browse the repository at this point in the history
  • Loading branch information
sjperkins committed Jan 26, 2024
1 parent da15d5a commit a69f4fd
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions africanus/util/numba.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ def wrapper(*args, **kwargs):
return decorator

cfunc = _fake_decorator
generated_jit = _fake_decorator
jit = _fake_decorator
njit = _fake_decorator
stencil = _fake_decorator
Expand All @@ -32,7 +31,7 @@ def wrapper(*args, **kwargs):
register_jitable = _fake_decorator
intrinsic = _fake_decorator
else:
from numba import cfunc, jit, njit, generated_jit, stencil # noqa
from numba import cfunc, jit, njit, stencil # noqa
from numba.extending import overload, register_jitable, intrinsic # noqa


Expand Down

0 comments on commit a69f4fd

Please sign in to comment.