Skip to content

Commit e2c6308

Browse files
committed
Bump OpenVINO version to 2024.4.0
1 parent 791576c commit e2c6308

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Dockerfile.openvino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ COPY setup.py /workspace/vllm/
2323
# install build requirements
2424
RUN PIP_EXTRA_INDEX_URL="https://download.pytorch.org/whl/cpu" python3 -m pip install -r /workspace/vllm/requirements-build.txt
2525
# build vLLM with OpenVINO backend
26-
RUN PIP_EXTRA_INDEX_URL="https://download.pytorch.org/whl/cpu https://storage.openvinotoolkit.org/simple/wheels/pre-release" VLLM_TARGET_DEVICE="openvino" python3 -m pip install /workspace/vllm/
26+
RUN PIP_EXTRA_INDEX_URL="https://download.pytorch.org/whl/cpu" VLLM_TARGET_DEVICE="openvino" python3 -m pip install /workspace/vllm/
2727

2828
COPY examples/ /workspace/vllm/examples
2929
COPY benchmarks/ /workspace/vllm/benchmarks

docs/source/getting_started/openvino-installation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Install from source
5757

5858
.. code-block:: console
5959
60-
$ PIP_EXTRA_INDEX_URL="https://download.pytorch.org/whl/cpu https://storage.openvinotoolkit.org/simple/wheels/pre-release" VLLM_TARGET_DEVICE=openvino python -m pip install -v .
60+
$ PIP_EXTRA_INDEX_URL="https://download.pytorch.org/whl/cpu" VLLM_TARGET_DEVICE=openvino python -m pip install -v .
6161
6262
- [Optional] To use vLLM OpenVINO backend with a GPU device, ensure your system is properly set up. Follow the instructions provided here: `https://docs.openvino.ai/2024/get-started/configurations/configurations-intel-gpu.html <https://docs.openvino.ai/2024/get-started/configurations/configurations-intel-gpu.html>`_.
6363

requirements-openvino.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33

44
# OpenVINO dependencies
55
torch >= 2.1.2
6-
openvino ~= 2024.4.0.dev
7-
openvino-tokenizers[transformers] ~= 2024.4.0.dev
8-
optimum-intel[openvino] >= 1.18.2
6+
openvino ~= 2024.4.0
7+
openvino-tokenizers[transformers] ~= 2024.4.0
8+
optimum-intel[openvino] >= 1.19.0

0 commit comments

Comments
 (0)