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 aa787db commit 262ed52Copy full SHA for 262ed52
numba_dpex/core/targets/kernel_target.py
@@ -87,14 +87,15 @@ def resolve_argument_type(self, val):
87
88
def load_additional_registries(self):
89
"""Register the OpenCL API and math and other functions."""
90
- from numba.core.typing import cmathdecl, npydecl
+ from numba.core.typing import cmathdecl, enumdecl, npydecl
91
92
from ...ocl import mathdecl, ocldecl
93
94
self.install_registry(ocldecl.registry)
95
self.install_registry(mathdecl.registry)
96
self.install_registry(cmathdecl.registry)
97
self.install_registry(npydecl.registry)
98
+ self.install_registry(enumdecl.registry)
99
100
101
class SyclDevice(GPU):
0 commit comments