-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy path__init__.py
More file actions
26 lines (23 loc) · 807 Bytes
/
__init__.py
File metadata and controls
26 lines (23 loc) · 807 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
"""Function stubs and API documentation for the array API standard."""
from .array_object import *
from .constants import *
from .creation_functions import *
from .data_type_functions import *
from . import data_types as dtype
from .elementwise_functions import *
from .indexing_functions import *
from .linear_algebra_functions import *
from .manipulation_functions import *
from .searching_functions import *
from .set_functions import *
from .sorting_functions import *
from .statistical_functions import *
from .utility_functions import *
from . import linalg
from . import fft
from . import sparse
from .info import __array_namespace_info__
__array_api_version__: str = "YYYY.MM"
"""
String representing the version of the array API specification which the conforming implementation adheres to.
"""