There was an error while loading. Please reload this page.
1 parent 00b4d78 commit ab6426bCopy full SHA for ab6426b
1 file changed
scripts/ci/sycl_test.py
@@ -22,11 +22,11 @@ def configure_windows_opencl_tbb() -> None:
22
if not config_path.exists():
23
return
24
25
- tbb_dll = find_file([Path("build")], "tbb12.dll")
+ tbb_dll = find_file([Path("build").resolve()], "tbb12.dll")
26
if tbb_dll is None:
27
28
29
- tbb_dir = str(tbb_dll.parent)
+ tbb_dir = str(tbb_dll.parent.resolve())
30
existing_lines = config_path.read_text(encoding="utf-8").splitlines()
31
updated_lines: list[str] = []
32
updated = False
0 commit comments