Skip to content

Commit 422910b

Browse files
committed
Add separate linalg.py file
1 parent 75420e9 commit 422910b

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

numpy_array_api_compat/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
"""
2020

2121
from numpy import *
22+
from . import linalg
2223

2324
# These imports may overwrite names from the import * above.
2425
from ._aliases import *

numpy_array_api_compat/linalg.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
from numpy.linalg import *

0 commit comments

Comments
 (0)