We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 306ed04 commit c2a4f5fCopy full SHA for c2a4f5f
array_api_compat/cupy/linalg.py
@@ -1,12 +1,13 @@
1
-import cupy as cp
+import cupy as _cp
2
+
3
from .._internal import _get_all_public_members
4
-_cupy_linalg_all = _get_all_public_members(cp.linalg)
5
+_cupy_linalg_all = _get_all_public_members(_cp.linalg)
6
-for name in _cupy_linalg_all:
7
- globals()[name] = getattr(cp.linalg, name)
+for _name in _cupy_linalg_all:
8
+ globals()[_name] = getattr(_cp.linalg, _name)
9
-from ._aliases import ( # noqa: E402
10
+from ._aliases import ( # noqa: E402
11
EighResult,
12
QRResult,
13
SlogdetResult,
0 commit comments