-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy path__init__.py
More file actions
61 lines (58 loc) · 1000 Bytes
/
Copy path__init__.py
File metadata and controls
61 lines (58 loc) · 1000 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
"""Extra array functions built on top of the array API standard."""
from . import testing
from ._delegation import (
argpartition,
atleast_nd,
broadcast_shapes,
cov,
create_diagonal,
expand_dims,
isclose,
isin,
kron,
nan_to_num,
one_hot,
pad,
partition,
searchsorted,
setdiff1d,
sinc,
union1d,
)
from ._lib._at import at
from ._lib._funcs import (
angle,
apply_where,
default_dtype,
nunique,
)
from ._lib._lazy import lazy_apply
__version__ = "0.11.1.dev0"
# pylint: disable=duplicate-code
__all__ = [
"__version__",
"angle",
"apply_where",
"argpartition",
"at",
"atleast_nd",
"broadcast_shapes",
"cov",
"create_diagonal",
"default_dtype",
"expand_dims",
"isclose",
"isin",
"kron",
"lazy_apply",
"nan_to_num",
"nunique",
"one_hot",
"pad",
"partition",
"searchsorted",
"setdiff1d",
"sinc",
"testing",
"union1d",
]