Skip to content

Commit

Permalink
Disable numba kernel caching in the FUSED rime for the moment
Browse files Browse the repository at this point in the history
  • Loading branch information
sjperkins committed Jan 29, 2024
1 parent d060c2b commit b6fd6f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion africanus/experimental/rime/fused/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def rime_impl_factory(terms, transformers, ncorr):
def rime_impl(*args):
raise NotImplementedError

@njit(**JIT_OPTIONS)
@njit(nogil=True)
def rime(*args):
return rime_impl(*args)

Expand Down

0 comments on commit b6fd6f6

Please sign in to comment.