Skip to content

Commit 6e42664

Browse files
committed
build: remove unnecessary local_include_dirs
1 parent d4569e9 commit 6e42664

1 file changed

Lines changed: 1 addition & 5 deletions

File tree

cuda_core/build_hooks.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -86,11 +86,7 @@ def get_cuda_paths():
8686
print("CUDA paths:", CUDA_PATH)
8787
return CUDA_PATH
8888

89-
# Add local include directory for cuda/core/_include
90-
# This allows Cython files to use: cdef extern from "_include/layout.hpp"
91-
local_include_dirs = ["cuda/core"]
92-
cuda_include_dirs = list(os.path.join(root, "include") for root in get_cuda_paths())
93-
all_include_dirs = local_include_dirs + cuda_include_dirs
89+
all_include_dirs = list(os.path.join(root, "include") for root in get_cuda_paths())
9490
extra_compile_args = []
9591
if COMPILE_FOR_COVERAGE:
9692
# CYTHON_TRACE_NOGIL indicates to trace nogil functions. It is not

0 commit comments

Comments
 (0)