File tree 1 file changed +28
-4
lines changed
array_api_compat/dask/array
1 file changed +28
-4
lines changed Original file line number Diff line number Diff line change
1
+ import dask .array as _da
1
2
from dask .array import * # noqa: F401, F403
2
- from dask .array import __all__ as _dask_array_all
3
-
4
3
from dask .array import (
5
4
# Element wise aliases
6
5
arccos as acos ,
6
+ )
7
+ from dask .array import (
7
8
arccosh as acosh ,
9
+ )
10
+ from dask .array import (
8
11
arcsin as asin ,
12
+ )
13
+ from dask .array import (
9
14
arcsinh as asinh ,
15
+ )
16
+ from dask .array import (
10
17
arctan as atan ,
18
+ )
19
+ from dask .array import (
11
20
arctan2 as atan2 ,
21
+ )
22
+ from dask .array import (
12
23
arctanh as atanh ,
24
+ )
25
+ from dask .array import (
26
+ bool_ as bool ,
27
+ )
28
+ from dask .array import (
13
29
# Other
14
30
concatenate as concat ,
31
+ )
32
+ from dask .array import (
15
33
invert as bitwise_invert ,
34
+ )
35
+ from dask .array import (
16
36
left_shift as bitwise_left_shift ,
37
+ )
38
+ from dask .array import (
17
39
power as pow ,
40
+ )
41
+ from dask .array import (
18
42
right_shift as bitwise_right_shift ,
19
- bool_ as bool ,
20
43
)
21
44
22
45
# These imports may overwrite names from the import * above.
52
75
size ,
53
76
to_device ,
54
77
)
78
+ from ..internal import _get_all_public_members
55
79
from ._aliases import (
56
80
UniqueAllResult ,
57
81
UniqueCountsResult ,
92
116
93
117
__all__ = []
94
118
95
- __all__ += _dask_array_all
119
+ __all__ += _get_all_public_members ( _da )
96
120
97
121
__all__ += [
98
122
"can_cast" ,
You can’t perform that action at this time.
0 commit comments