File tree Expand file tree Collapse file tree 2 files changed +1
-3
lines changed
sparse/numba_backend/_coo Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -44,8 +44,6 @@ array_api_tests/test_indexing_functions.py::test_take
44
44
array_api_tests/test_linalg.py::test_vecdot
45
45
array_api_tests/test_operators_and_elementwise_functions.py::test_ceil
46
46
array_api_tests/test_operators_and_elementwise_functions.py::test_trunc
47
- array_api_tests/test_searching_functions.py::test_argmax
48
- array_api_tests/test_searching_functions.py::test_argmin
49
47
array_api_tests/test_set_functions.py::test_unique_all
50
48
array_api_tests/test_set_functions.py::test_unique_inverse
51
49
array_api_tests/test_signatures.py::test_func_signature[unique_all]
Original file line number Diff line number Diff line change @@ -1456,7 +1456,7 @@ def _compute_minmax_args(
1456
1456
if not found :
1457
1457
result_data .append (current_coord + 1 )
1458
1458
1459
- return (result_indices , result_data )
1459
+ return (result_indices , np . array ( result_data , dtype = np . intp ) )
1460
1460
1461
1461
1462
1462
def _arg_minmax_common (
You can’t perform that action at this time.
0 commit comments