File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed
_kernel_dpcpp_spirv_overloads Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 32
32
get_memory_semantics_mask ,
33
33
get_scope ,
34
34
)
35
- from .spv_fn_generator import (
35
+ from .spv_atomic_fn_declarations import (
36
36
get_or_insert_atomic_load_fn ,
37
37
get_or_insert_spv_atomic_compare_exchange_fn ,
38
38
get_or_insert_spv_atomic_exchange_fn ,
Original file line number Diff line number Diff line change 11
11
from numba .core .errors import TypingError
12
12
from numba .extending import intrinsic , overload_method
13
13
14
- from numba_dpex .kernel_api_impl .spirv .target import SPIRVTargetContext
15
14
from numba_dpex .core .types .kernel_api .index_space_ids import (
16
15
GroupType ,
17
16
ItemType ,
18
17
NdItemType ,
19
18
)
19
+ from numba_dpex .kernel_api_impl .spirv .target import SPIRVTargetContext
20
20
21
21
from ..target import DPEX_KERNEL_EXP_TARGET_NAME
22
22
File renamed without changes.
Original file line number Diff line number Diff line change 25
25
ItemType ,
26
26
NdItemType ,
27
27
)
28
+ from numba_dpex .core .utils import kernel_launcher as kl
29
+ from numba_dpex .dpctl_iface import libsyclinterface_bindings as sycl
30
+ from numba_dpex .dpctl_iface .wrappers import wrap_event_reference
28
31
from numba_dpex .kernel_api_impl .spirv .dispatcher import (
29
32
SPIRVKernelDispatcher ,
30
33
_SPIRVKernelCompileResult ,
31
34
)
32
35
from numba_dpex .kernel_api_impl .spirv .target import SPIRVTargetContext
33
- from numba_dpex .core .utils import kernel_launcher as kl
34
- from numba_dpex .dpctl_iface import libsyclinterface_bindings as sycl
35
- from numba_dpex .dpctl_iface .wrappers import wrap_event_reference
36
36
37
37
38
38
class LLRange (NamedTuple ):
You can’t perform that action at this time.
0 commit comments