Skip to content

Commit

Permalink
fix onednn dependency bug (#12665)
Browse files Browse the repository at this point in the history
  • Loading branch information
MeouSker77 authored Jan 7, 2025
1 parent 29ad5c4 commit f9ee789
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions python/llm/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -310,15 +310,18 @@ def setup_package():
"bigdl-core-xe-23==" + CORE_XE_VERSION,
"bigdl-core-xe-batch-23==" + CORE_XE_VERSION,
"bigdl-core-xe-addons-23==" + CORE_XE_VERSION,
"onednn-devel==2024.1.1;platform_system=='Windows'"]
"onednn-devel==2024.1.1;platform_system=='Windows'",
"onednn==2024.1.1;platform_system=='Windows'"]

cpp_requires = ["bigdl-core-cpp==" + CORE_XE_VERSION,
"onednn-devel==2024.2.1;platform_system=='Windows'"]
"onednn-devel==2024.2.1;platform_system=='Windows'",
"onednn==2024.2.1;platform_system=='Windows'"]
cpp_requires += oneapi_2024_2_requires
cpp_requires += COMMON_DEP

cpp_arl_requires = ["bigdl-core-cpp==" + CORE_XE_VERSION,
"onednn-devel==2024.1.1;platform_system=='Windows'"]
"onednn-devel==2024.1.1;platform_system=='Windows'",
"onednn==2024.1.1;platform_system=='Windows'"]
cpp_arl_requires += oneapi_2024_2_requires
cpp_arl_requires += COMMON_DEP

Expand Down

0 comments on commit f9ee789

Please sign in to comment.