Skip to content

Commit 0ad3dba

Browse files
author
Diptorup Deb
committed
Rename utils.kernel_launcher to utils.call_kernel_builder
1 parent 8464ce1 commit 0ad3dba

File tree

5 files changed

+4
-4
lines changed

5 files changed

+4
-4
lines changed

numba_dpex/core/kernel_launcher.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
NdItemType,
2727
)
2828
from numba_dpex.core.types.kernel_api.local_accessor import LocalAccessorType
29-
from numba_dpex.core.utils import kernel_launcher as kl
29+
from numba_dpex.core.utils import call_kernel_builder as kl
3030
from numba_dpex.dpctl_iface import libsyclinterface_bindings as sycl
3131
from numba_dpex.dpctl_iface.wrappers import wrap_event_reference
3232
from numba_dpex.kernel_api_impl.spirv.dispatcher import (

numba_dpex/core/parfors/parfor_lowerer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
ReductionHelper,
2121
ReductionKernelVariables,
2222
)
23-
from numba_dpex.core.utils.kernel_launcher import KernelLaunchIRBuilder
23+
from numba_dpex.core.utils.call_kernel_builder import KernelLaunchIRBuilder
2424
from numba_dpex.dpctl_iface import libsyclinterface_bindings as sycl
2525

2626
from ..exceptions import UnsupportedParforError

numba_dpex/core/parfors/reduction_helper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
from numba_dpex.core.datamodel.models import (
2121
dpex_data_model_manager as kernel_dmm,
2222
)
23+
from numba_dpex.core.utils.call_kernel_builder import KernelLaunchIRBuilder
2324
from numba_dpex.core.utils.cgutils_extra import get_llvm_type
24-
from numba_dpex.core.utils.kernel_launcher import KernelLaunchIRBuilder
2525
from numba_dpex.dpctl_iface import libsyclinterface_bindings as sycl
2626

2727
from ..types.dpnp_ndarray_type import DpnpNdArray

numba_dpex/kernel_api_impl/spirv/dispatcher.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
)
3737
from numba_dpex.core.pipelines import kernel_compiler
3838
from numba_dpex.core.types import USMNdArray
39-
from numba_dpex.core.utils import kernel_launcher as kl
39+
from numba_dpex.core.utils import call_kernel_builder as kl
4040
from numba_dpex.kernel_api_impl.spirv import spirv_generator
4141
from numba_dpex.kernel_api_impl.spirv.codegen import SPIRVCodeLibrary
4242
from numba_dpex.kernel_api_impl.spirv.target import (

0 commit comments

Comments
 (0)