This repository was archived by the owner on Sep 4, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +6
-14
lines changed
docs/source/getting_started Expand file tree Collapse file tree 3 files changed +6
-14
lines changed Original file line number Diff line number Diff line change @@ -10,19 +10,11 @@ RUN wget -O- https://apt.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRO
10
10
RUN apt-get update -y \
11
11
&& apt-get install -y curl libicu70 lsb-release git wget vim numactl python3 python3-pip ffmpeg libsm6 libxext6 libgl1
12
12
13
- RUN git clone https://github.com/intel/pti-gpu && \
14
- cd pti-gpu/sdk && \
15
- mkdir build && \
16
- cd build && \
17
- cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_TOOLCHAIN_FILE=../cmake/toolchains/icpx_toolchain.cmake -DBUILD_TESTING=OFF .. && \
18
- make -j && \
19
- cmake --install . --config Release --prefix "/usr/local"
20
-
21
13
COPY ./ /workspace/vllm
22
14
23
15
WORKDIR /workspace/vllm
24
16
25
- RUN pip install -v -r requirements-xpu.txt
17
+ RUN pip install -v -r requirements-xpu.txt --extra-index-url https://pytorch-extension.intel.com/release-whl/stable/xpu/us/
26
18
27
19
RUN VLLM_TARGET_DEVICE=xpu python3 setup.py install
28
20
Original file line number Diff line number Diff line change @@ -17,8 +17,8 @@ Requirements
17
17
------------
18
18
19
19
* OS: Linux
20
- * Supported Hardware: Intel Data Center GPU ( Intel ARC GPU WIP)
21
- * OneAPI requirements: oneAPI 2024.1
20
+ * Supported Hardware: Intel Data Center GPU, Intel ARC GPU
21
+ * OneAPI requirements: oneAPI 2024.2
22
22
23
23
.. _xpu_backend_quick_start_dockerfile :
24
24
@@ -40,7 +40,7 @@ Quick start using Dockerfile
40
40
Build from source
41
41
-----------------
42
42
43
- - First, install required driver and intel OneAPI 2024.1 or later.
43
+ - First, install required driver and intel OneAPI 2024.2 or later.
44
44
45
45
- Second, install Python packages for vLLM XPU backend building:
46
46
Original file line number Diff line number Diff line change 3
3
4
4
setuptools < 70.0.0 # IPEX's torch have some dependency. to be removed.
5
5
6
+ ray >= 2.9
7
+ # Following pkgs retrieved from https://pytorch-extension.intel.com/release-whl/stable/xpu/us/
6
8
torch == 2.3.1+cxx11.abi
7
9
intel-extension-for-pytorch == 2.3.110+xpu
8
10
oneccl_bind_pt == 2.3.100+xpu
9
11
10
12
triton-xpu == 3.0.0b2
11
-
12
- --extra-index-url https://pytorch-extension.intel.com/release-whl/stable/xpu/us/
You can’t perform that action at this time.
0 commit comments