Skip to content

Commit b5a57eb

Browse files
authored
Merge pull request #290 from crusaderky/dask-capabilities
ENH: correct Dask capabilities
2 parents 7e1b689 + 1db3fae commit b5a57eb

File tree

2 files changed

+21
-9
lines changed

2 files changed

+21
-9
lines changed

array_api_compat/dask/array/_info.py

+16-6
Original file line numberDiff line numberDiff line change
@@ -68,11 +68,22 @@ def capabilities(self):
6868
The resulting dictionary has the following keys:
6969
7070
- **"boolean indexing"**: boolean indicating whether an array library
71-
supports boolean indexing. Always ``False`` for Dask.
71+
supports boolean indexing.
72+
73+
Dask support boolean indexing as long as both the index
74+
and the indexed arrays have known shapes.
75+
Note however that the output .shape and .size properties
76+
will contain a non-compliant math.nan instead of None.
7277
7378
- **"data-dependent shapes"**: boolean indicating whether an array
74-
library supports data-dependent output shapes. Always ``False`` for
75-
Dask.
79+
library supports data-dependent output shapes.
80+
81+
Dask implements unique_values et.al.
82+
Note however that the output .shape and .size properties
83+
will contain a non-compliant math.nan instead of None.
84+
85+
- **"max dimensions"**: integer indicating the maximum number of
86+
dimensions supported by the array library.
7687
7788
See
7889
https://data-apis.org/array-api/latest/API_specification/generated/array_api.info.capabilities.html
@@ -99,9 +110,8 @@ def capabilities(self):
99110
100111
"""
101112
return {
102-
"boolean indexing": False,
103-
"data-dependent shapes": False,
104-
# 'max rank' will be part of the 2024.12 standard
113+
"boolean indexing": True,
114+
"data-dependent shapes": True,
105115
"max dimensions": 64,
106116
}
107117

dask-xfails.txt

+5-3
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,14 @@ array_api_tests/test_has_names.py::test_has_names[array_method-to_device]
2828
array_api_tests/test_has_names.py::test_has_names[array_attribute-device]
2929
array_api_tests/test_has_names.py::test_has_names[array_attribute-mT]
3030

31-
# Fails because shape is NaN since we don't materialize it yet
31+
# Data-dependent output shape
32+
# These tests fail as array-api-tests doesn't cope with unknown shapes
33+
# Also, output shape is (math.nan, ) instead of (None, )
34+
# Also, da.unique() doesn't accept equals_nan which causes non-compliant
35+
# output when there are NaNs in the input.
3236
array_api_tests/test_searching_functions.py::test_nonzero
3337
array_api_tests/test_set_functions.py::test_unique_all
3438
array_api_tests/test_set_functions.py::test_unique_counts
35-
36-
# Different error but same cause as above, we're just trying to do ndindex on nan shape
3739
array_api_tests/test_set_functions.py::test_unique_inverse
3840
array_api_tests/test_set_functions.py::test_unique_values
3941

0 commit comments

Comments
 (0)