Skip to content

Commit

Permalink
Fix numba depreceation notice (#1233)
Browse files Browse the repository at this point in the history
  • Loading branch information
m3at authored May 5, 2023
1 parent b1c0815 commit 7ca9fbe
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 7ca9fbe

Please sign in to comment.