Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions numba_dpex/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,6 @@ def parse_sem_version(version_string: str) -> Tuple[int, int, int]:
from numba import prange # noqa E402

import numba_dpex.core.dpjit_dispatcher # noqa E402
import numba_dpex.core.offload_dispatcher # noqa E402

# Initialize the _dpexrt_python extension
import numba_dpex.core.runtime # noqa E402
Expand All @@ -111,7 +110,6 @@ def parse_sem_version(version_string: str) -> Tuple[int, int, int]:
# Re-export all type names
from numba_dpex.core.types import * # noqa E402
from numba_dpex.dpnp_iface import dpnpimpl # noqa E402
from numba_dpex.retarget import offload_to_sycl_device # noqa E402

if config.HAS_NON_HOST_DEVICE:
# Re export
Expand Down Expand Up @@ -150,4 +148,4 @@ def parse_sem_version(version_string: str) -> Tuple[int, int, int]:
__version__ = get_versions()["version"]
del get_versions

__all__ = types.__all__ + ["offload_to_sycl_device"] + ["Range", "NdRange"]
__all__ = types.__all__ + ["Range", "NdRange"]
1 change: 0 additions & 1 deletion numba_dpex/core/compiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
UnreachableError,
)
from numba_dpex.core.pipelines.kernel_compiler import KernelCompiler
from numba_dpex.core.pipelines.offload_compiler import OffloadCompiler


@global_compiler_lock
Expand Down
60 changes: 0 additions & 60 deletions numba_dpex/core/offload_dispatcher.py

This file was deleted.

Loading