Skip to content

Commit

Permalink
Fix numba depreceation notice (openai#1233)
Browse files Browse the repository at this point in the history
  • Loading branch information
m3at authored and abyesilyurt committed Nov 13, 2023
1 parent 400439f commit cae2e4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion whisper/timing.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def median_filter(x: torch.Tensor, filter_width: int):
return result


@numba.jit
@numba.jit(nopython=True)
def backtrace(trace: np.ndarray):
i = trace.shape[0] - 1
j = trace.shape[1] - 1
Expand Down

0 comments on commit cae2e4c

Please sign in to comment.