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 33# SPDX-License-Identifier: Apache-2.0
44
55import copy
6- import sys
76import warnings
87
9- import dpctl
10- import dpctl .program as dpctl_prog
118from numba .core import ir , types
129from numba .core .errors import NumbaParallelSafetyWarning
1310from numba .core .ir_utils import (
14- add_offset_to_labels ,
1511 get_name_var_table ,
1612 get_unused_var_name ,
1713 legalize_names ,
1814 mk_unique_var ,
19- remove_dead ,
2015 remove_dels ,
21- rename_labels ,
2216 replace_var_names ,
2317)
24- from numba .core .target_extension import target_override
2518from numba .core .typing import signature
2619from numba .parfors import parfor
2720
3225)
3326from numba_dpex .core .types .kernel_api .index_space_ids import ItemType
3427from numba_dpex .core .utils .call_kernel_builder import SPIRVKernelModule
35- from numba_dpex .kernel_api_impl .spirv import spirv_generator
3628from numba_dpex .kernel_api_impl .spirv .dispatcher import (
3729 SPIRVKernelDispatcher ,
3830 _SPIRVKernelCompileResult ,
3931)
4032
41- from ..descriptor import dpex_kernel_target
42- from ..types import DpnpNdArray
43- from .compiler import compile_numba_ir_with_dpex
4433from .kernel_templates .range_kernel_template import RangeKernelTemplate
4534
4635
Original file line number Diff line number Diff line change 33# SPDX-License-Identifier: Apache-2.0
44
55import copy
6- from collections import namedtuple
76
87from llvmlite import ir as llvmir
98from numba .core import cgutils , ir , types
Original file line number Diff line number Diff line change 1717from numba .parfors import parfor
1818from numba .parfors .parfor_lowering_utils import ParforLoweringBuilder
1919
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
2420from numba_dpex .core .utils .cgutils_extra import get_llvm_type
2521from numba_dpex .dpctl_iface import libsyclinterface_bindings as sycl
2622
You can’t perform that action at this time.
0 commit comments