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 4ccb6a3 commit 5eae948Copy full SHA for 5eae948
dpnp/__init__.py
@@ -70,14 +70,15 @@
70
from .dpnp_iface_utils import *
71
from .dpnp_iface_utils import __all__ as _ifaceutils__all__
72
from ._version import get_versions
73
+from . import exceptions as exceptions
74
from . import linalg as linalg
75
from . import scipy as scipy
76
77
__all__ = _iface__all__
78
__all__ += _ifaceutils__all__
79
80
# add submodules
-__all__ += ["linalg", "scipy"]
81
+__all__ += ["exceptions", "linalg", "scipy"]
82
83
84
__version__ = get_versions()["version"]
dpnp/exceptions/__init__.py
@@ -0,0 +1,5 @@
1
+from dpctl.tensor._dlpack import DLPackCreationError
2
+
3
+__all__ = [
4
+ "DLPackCreationError",
5
+]
0 commit comments