forked from data-apis/array-api-extra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_backends.py
51 lines (41 loc) · 1.72 KB
/
_backends.py
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
"""Backends with which array-api-extra interacts in delegation and testing."""
from collections.abc import Callable
from enum import Enum
from types import ModuleType
from typing import cast
from ._utils import _compat
__all__ = ["Backend"]
class Backend(Enum): # numpydoc ignore=PR01,PR02 # type: ignore[no-subclass-any]
"""
All array library backends explicitly tested by array-api-extra.
Parameters
----------
value : str
Name of the backend's module.
is_namespace : Callable[[ModuleType], bool]
Function to check whether an input module is the array namespace
corresponding to the backend.
"""
ARRAY_API_STRICT = "array_api_strict", _compat.is_array_api_strict_namespace
NUMPY = "numpy", _compat.is_numpy_namespace
NUMPY_READONLY = "numpy_readonly", _compat.is_numpy_namespace
CUPY = "cupy", _compat.is_cupy_namespace
TORCH = "torch", _compat.is_torch_namespace
DASK_ARRAY = "dask.array", _compat.is_dask_namespace
SPARSE = "sparse", _compat.is_pydata_sparse_namespace
JAX_NUMPY = "jax.numpy", _compat.is_jax_namespace
def __new__(
cls, value: str, _is_namespace: Callable[[ModuleType], bool]
): # numpydoc ignore=GL08
obj = object.__new__(cls)
obj._value_ = value
return obj
def __init__(
self,
value: str, # noqa: ARG002 # pylint: disable=unused-argument
is_namespace: Callable[[ModuleType], bool],
): # numpydoc ignore=GL08
self.is_namespace = is_namespace
def __str__(self) -> str: # type: ignore[explicit-override] # pyright: ignore[reportImplicitOverride] # numpydoc ignore=RT01
"""Pretty-print parameterized test names."""
return cast(str, self.value)