We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2cfbd4f commit 3820460Copy full SHA for 3820460
array_api_compat/jax/__init__.py
@@ -43,7 +43,7 @@ def top_k(
43
slice = slice_start + (s_[:k],)
44
topk_indices = indices_array[slice]
45
46
- topk_indices = topk_indices.astype(np.int_)
+ topk_indices = topk_indices.astype(int_)
47
topk_values = take_along_axis(arr, topk_indices, axis=axis)
48
return (topk_values, topk_indices)
49
0 commit comments