From ed45d3da44b3f067a617110052b74f6bac332db3 Mon Sep 17 00:00:00 2001 From: Anatoly Myachev Date: Thu, 13 Feb 2025 15:48:13 +0100 Subject: [PATCH] fix Signed-off-by: Anatoly Myachev --- third_party/intel/backend/driver.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/third_party/intel/backend/driver.py b/third_party/intel/backend/driver.py index 48bfe49f07..6d81a61b38 100644 --- a/third_party/intel/backend/driver.py +++ b/third_party/intel/backend/driver.py @@ -68,7 +68,7 @@ def find_sycl(include_dir: list[str]) -> tuple[list[str], str]: # being add: include and include/sycl. if f.name == "sycl.hpp": include_dir += [str(f.locate().parent.parent.resolve())] - if f.name in ["libsycl.so", "sycl8.dll"]: + if f.name in ["libsycl.so", "sycl.dll"]: sycl_dir = str(f.locate().parent.resolve()) # should we handle `_` somehow? if os.name == "nt":