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 6dc9e7f commit 53d1838Copy full SHA for 53d1838
doc/reference/exceptions.rst
@@ -35,3 +35,5 @@ Exceptions
35
Traceback (most recent call last):
36
...
37
DLPackCreationError: to_dlpack_capsule: DLPack can only export arrays based on USM allocations bound to a default platform SYCL context
38
+
39
+.. autodata:: SyclDeviceCreationError
dpnp/exceptions/__init__.py
@@ -1,7 +1,9 @@
1
+from dpctl import SyclDeviceCreationError
2
from dpctl.tensor._dlpack import DLPackCreationError
3
from numpy.exceptions import AxisError
4
5
__all__ = [
6
"AxisError",
7
"DLPackCreationError",
8
+ "SyclDeviceCreationError",
9
]
0 commit comments