We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
local_include_dirs
1 parent d4569e9 commit 6e42664Copy full SHA for 6e42664
1 file changed
cuda_core/build_hooks.py
@@ -86,11 +86,7 @@ def get_cuda_paths():
86
print("CUDA paths:", CUDA_PATH)
87
return CUDA_PATH
88
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
+ all_include_dirs = list(os.path.join(root, "include") for root in get_cuda_paths())
94
extra_compile_args = []
95
if COMPILE_FOR_COVERAGE:
96
# CYTHON_TRACE_NOGIL indicates to trace nogil functions. It is not
0 commit comments