Skip to content

Commit dc5c9e7

Browse files
committed
fix(python): JIT compilation on certain CUDA versions
1 parent b17b21e commit dc5c9e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bindings/torch/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ def find_cl_path():
177177
else:
178178
cuda_include_dir = os.path.join(os.path.dirname(os.path.dirname(nvcc_path)), "include")
179179

180-
cuda_headers = glob(f"{cuda_include_dir}/cuda_fp16*")
180+
cuda_headers = glob(f"{cuda_include_dir}/cuda_fp16*") + glob(f"{cuda_include_dir}/vector*")
181181
tcnn_headers = glob(f"{root_dir}/include/tiny-cuda-nn/*", recursive=True)
182182
pcg32_headers = glob(f"{root_dir}/dependencies/pcg32/*")
183183

0 commit comments

Comments
 (0)