File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed
array_api_compat/dask/array Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -88,6 +88,7 @@ def _dask_arange(
8888permute_dims = get_xp (da )(_aliases .permute_dims )
8989std = get_xp (da )(_aliases .std )
9090var = get_xp (da )(_aliases .var )
91+ clip = get_xp (da )(_aliases .clip )
9192empty = get_xp (da )(_aliases .empty )
9293empty_like = get_xp (da )(_aliases .empty_like )
9394full = 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
4848array_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]
4949array_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]
5050
51+ # The clip helper uses boolean indexing
52+ array_api_tests/test_operators_and_elementwise_functions.py::test_clip
53+
5154# No sorting in dask
5255array_api_tests/test_has_names.py::test_has_names[sorting-argsort]
5356array_api_tests/test_has_names.py::test_has_names[sorting-sort]
You can’t perform that action at this time.
0 commit comments