From 516b578104a82b1806cf7cea40ba6f035b864502 Mon Sep 17 00:00:00 2001 From: Yuwen Hu <54161268+Oscilloscope98@users.noreply.github.com> Date: Mon, 14 Oct 2024 17:20:31 +0800 Subject: [PATCH] Support cpp release for ARL on Windows (#12189) * Support cpp Windows release for ARL * Temp commit for test * Remove temp commit --- python/llm/setup.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/python/llm/setup.py b/python/llm/setup.py index 4f114f2a..2e350623 100644 --- a/python/llm/setup.py +++ b/python/llm/setup.py @@ -309,6 +309,10 @@ def setup_package(): "onednn-devel==2024.2.1;platform_system=='Windows'"] cpp_requires += oneapi_2024_2_requires + cpp_arl_requires = ["bigdl-core-cpp==" + CORE_XE_VERSION, + "onednn-devel==2024.1.1;platform_system=='Windows'"] + cpp_arl_requires += oneapi_2024_2_requires + serving_requires = ['py-cpuinfo'] serving_requires += SERVING_DEP @@ -347,6 +351,7 @@ def setup_package(): "xpu-arl": xpu_lnl_requires, "serving": serving_requires, "cpp": cpp_requires, + "cpp-arl": cpp_arl_requires, "llama-index": llama_index_requires}, # for internal usage when upstreaming for llama-index classifiers=[ 'License :: OSI Approved :: Apache Software License',