File tree Expand file tree Collapse file tree 4 files changed +0
-104
lines changed Expand file tree Collapse file tree 4 files changed +0
-104
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 3
3
# SPDX-License-Identifier: Apache-2.0
4
4
5
5
import copy
6
- import sys
7
6
import warnings
8
7
9
- import dpctl
10
- import dpctl .program as dpctl_prog
11
8
from numba .core import ir , types
12
9
from numba .core .errors import NumbaParallelSafetyWarning
13
10
from numba .core .ir_utils import (
14
- add_offset_to_labels ,
15
11
get_name_var_table ,
16
12
get_unused_var_name ,
17
13
legalize_names ,
18
14
mk_unique_var ,
19
- remove_dead ,
20
15
remove_dels ,
21
- rename_labels ,
22
16
replace_var_names ,
23
17
)
24
- from numba .core .target_extension import target_override
25
18
from numba .core .typing import signature
26
19
from numba .parfors import parfor
27
20
32
25
)
33
26
from numba_dpex .core .types .kernel_api .index_space_ids import ItemType
34
27
from numba_dpex .core .utils .call_kernel_builder import SPIRVKernelModule
35
- from numba_dpex .kernel_api_impl .spirv import spirv_generator
36
28
from numba_dpex .kernel_api_impl .spirv .dispatcher import (
37
29
SPIRVKernelDispatcher ,
38
30
_SPIRVKernelCompileResult ,
39
31
)
40
32
41
- from ..descriptor import dpex_kernel_target
42
- from ..types import DpnpNdArray
43
- from .compiler import compile_numba_ir_with_dpex
44
33
from .kernel_templates .range_kernel_template import RangeKernelTemplate
45
34
46
35
Original file line number Diff line number Diff line change 3
3
# SPDX-License-Identifier: Apache-2.0
4
4
5
5
import copy
6
- from collections import namedtuple
7
6
8
7
from llvmlite import ir as llvmir
9
8
from numba .core import cgutils , ir , types
Original file line number Diff line number Diff line change 17
17
from numba .parfors import parfor
18
18
from numba .parfors .parfor_lowering_utils import ParforLoweringBuilder
19
19
20
- from numba_dpex .core .datamodel .models import (
21
- dpex_data_model_manager as kernel_dmm ,
22
- )
23
- from numba_dpex .core .utils .call_kernel_builder import KernelLaunchIRBuilder
24
20
from numba_dpex .core .utils .cgutils_extra import get_llvm_type
25
21
from numba_dpex .dpctl_iface import libsyclinterface_bindings as sycl
26
22
You can’t perform that action at this time.
0 commit comments