File tree 2 files changed +4
-0
lines changed
array_api_compat/dask/array
2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -88,6 +88,7 @@ def _dask_arange(
88
88
permute_dims = get_xp (da )(_aliases .permute_dims )
89
89
std = get_xp (da )(_aliases .std )
90
90
var = get_xp (da )(_aliases .var )
91
+ clip = get_xp (da )(_aliases .clip )
91
92
empty = get_xp (da )(_aliases .empty )
92
93
empty_like = get_xp (da )(_aliases .empty_like )
93
94
full = get_xp (da )(_aliases .full )
Original file line number Diff line number Diff line change @@ -48,6 +48,9 @@ array_api_tests/test_special_cases.py::test_iop[__ipow__(x1_i is -0 and x2_i > 0
48
48
array_api_tests/test_special_cases.py::test_iop[__ipow__(x1_i is -infinity and x2_i > 0 and not (x2_i.is_integer() and x2_i % 2 == 1)) -> +infinity]
49
49
array_api_tests/test_special_cases.py::test_binary[__pow__(x1_i is -infinity and x2_i > 0 and not (x2_i.is_integer() and x2_i % 2 == 1)) -> +infinity]
50
50
51
+ # The clip helper uses boolean indexing
52
+ array_api_tests/test_operators_and_elementwise_functions.py::test_clip
53
+
51
54
# No sorting in dask
52
55
array_api_tests/test_has_names.py::test_has_names[sorting-argsort]
53
56
array_api_tests/test_has_names.py::test_has_names[sorting-sort]
You can’t perform that action at this time.
0 commit comments