Skip to content

Commit

Permalink
Do not cache numba decorated split_array (#854)
Browse files Browse the repository at this point in the history
  • Loading branch information
dachengx authored Jul 4, 2024
1 parent 2d772f1 commit 3440362
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion strax/chunk.py
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ class CannotSplit(Exception):


@export
@numba.njit(cache=True, nogil=True)
@numba.njit(cache=False, nogil=True)
def split_array(data, t, allow_early_split=False):
"""Return (data left of t, data right of t, t), or raise CannotSplit if that would split a data
element in two.
Expand Down

0 comments on commit 3440362

Please sign in to comment.