Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
Signed-off-by: Anatoly Myachev <[email protected]>
  • Loading branch information
anmyachev committed Feb 13, 2025
1 parent 31df03d commit ed45d3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion third_party/intel/backend/driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -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":
Expand Down

0 comments on commit ed45d3d

Please sign in to comment.