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 9b26969 commit ba454fbCopy full SHA for ba454fb
array_api_strict/linalg.py
@@ -13,7 +13,10 @@
13
from ._elementwise_functions import conj
14
from ._array_object import Array
15
16
-from numpy._core.numeric import normalize_axis_tuple
+try:
17
+ from numpy._core.numeric import normalize_axis_tuple
18
+except ImportError:
19
+ from numpy.core.numeric import normalize_axis_tuple
20
21
from typing import TYPE_CHECKING
22
if TYPE_CHECKING:
0 commit comments