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 a96b016 commit 5c50ad2Copy full SHA for 5c50ad2
dpctl/__init__.py
@@ -24,6 +24,8 @@
24
"""
25
__author__ = "Intel Corp."
26
27
+from .enum_types import *
28
+from .enum_types import __all__ as _enum_types_all__
29
from dpctl._sycl_context import *
30
from dpctl._sycl_context import __all__ as _sycl_context__all__
31
from dpctl._sycl_device import *
@@ -38,10 +40,8 @@
38
40
from dpctl._sycl_queue import __all__ as _sycl_queue__all__
39
41
from dpctl._sycl_queue_manager import *
42
from dpctl._sycl_queue_manager import __all__ as _sycl_qm__all__
-
43
from ._version import get_versions
-from .enum_types import *
44
-from .enum_types import __all__ as _enum_types_all__
+
45
46
__all__ = (
47
_sycl_context__all__
0 commit comments