File tree Expand file tree Collapse file tree 1 file changed +28
-4
lines changed
array_api_compat/dask/array Expand file tree Collapse file tree 1 file changed +28
-4
lines changed Original file line number Diff line number Diff line change 1+ import dask .array as _da
12from dask .array import * # noqa: F401, F403
2- from dask .array import __all__ as _dask_array_all
3-
43from dask .array import (
54 # Element wise aliases
65 arccos as acos ,
6+ )
7+ from dask .array import (
78 arccosh as acosh ,
9+ )
10+ from dask .array import (
811 arcsin as asin ,
12+ )
13+ from dask .array import (
914 arcsinh as asinh ,
15+ )
16+ from dask .array import (
1017 arctan as atan ,
18+ )
19+ from dask .array import (
1120 arctan2 as atan2 ,
21+ )
22+ from dask .array import (
1223 arctanh as atanh ,
24+ )
25+ from dask .array import (
26+ bool_ as bool ,
27+ )
28+ from dask .array import (
1329 # Other
1430 concatenate as concat ,
31+ )
32+ from dask .array import (
1533 invert as bitwise_invert ,
34+ )
35+ from dask .array import (
1636 left_shift as bitwise_left_shift ,
37+ )
38+ from dask .array import (
1739 power as pow ,
40+ )
41+ from dask .array import (
1842 right_shift as bitwise_right_shift ,
19- bool_ as bool ,
2043)
2144
2245# These imports may overwrite names from the import * above.
5275 size ,
5376 to_device ,
5477)
78+ from ..internal import _get_all_public_members
5579from ._aliases import (
5680 UniqueAllResult ,
5781 UniqueCountsResult ,
92116
93117__all__ = []
94118
95- __all__ += _dask_array_all
119+ __all__ += _get_all_public_members ( _da )
96120
97121__all__ += [
98122 "can_cast" ,
You can’t perform that action at this time.
0 commit comments