Skip to content
Merged
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
7 changes: 3 additions & 4 deletions numba_cuda/numba/cuda/core/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,13 @@

from numba.core import (
types,
utils,
datamodel,
funcdesc,
config,
imputils,
)
from numba.cuda import cgutils, debuginfo
from numba.core import errors, targetconfig
from numba.cuda import cgutils, debuginfo, utils
from numba.core import errors
from numba.cuda.core import targetconfig, funcdesc
from numba import _dynfunc, _helperlib
from numba.core.compiler_lock import global_compiler_lock
from numba.cuda.core.pythonapi import PythonAPI
Expand Down
Loading