Skip to content

Commit 536e6de

Browse files
committed
Fix logic error computing CCCL_INCLUDE_PATHS in cuda_core/tests/helpers.py
1 parent caf3d99 commit 536e6de

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

cuda_core/tests/helpers.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
path = os.path.join(CUDA_PATH, "include")
1111
if os.path.isdir(path):
1212
CUDA_INCLUDE_PATH = path
13+
CCCL_INCLUDE_PATHS = (path,)
1314
path = os.path.join(path, "cccl")
1415
if os.path.isdir(path):
15-
CCCL_INCLUDE_PATHS = (path, CUDA_INCLUDE_PATH)
16+
CCCL_INCLUDE_PATHS = (path,) + CCCL_INCLUDE_PATHS

0 commit comments

Comments
 (0)