File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 16
16
from numba .core .typing .typeof import Purpose , typeof
17
17
18
18
from numba_dpex import config , spirv_generator
19
- from numba_dpex .core .descriptor import dpex_kernel_target
20
19
from numba_dpex .core .exceptions import (
21
20
ExecutionQueueInferenceError ,
22
21
UnsupportedKernelArgumentError ,
23
22
)
24
23
from numba_dpex .core .pipelines import kernel_compiler
25
24
from numba_dpex .core .types import DpnpNdArray
26
25
26
+ from .target import dpex_exp_kernel_target
27
+
27
28
_KernelModule = namedtuple ("_KernelModule" , ["kernel_name" , "kernel_bitcode" ])
28
29
29
30
_KernelCompileResult = namedtuple (
@@ -177,7 +178,7 @@ class KernelDispatcher(Dispatcher):
177
178
178
179
"""
179
180
180
- targetdescr = dpex_kernel_target
181
+ targetdescr = dpex_exp_kernel_target
181
182
_fold_args = False
182
183
183
184
Dispatcher ._impl_kinds ["kernel" ] = _KernelCompiler
You can’t perform that action at this time.
0 commit comments