From 4a6e7dae7ff9795af81f677963f101a0a6ce6943 Mon Sep 17 00:00:00 2001 From: Ilya Lavrenov Date: Thu, 10 Oct 2024 21:18:58 +0400 Subject: [PATCH] [OpenVINO] Use torch 2.4.0 and newer optimim version (#9121) Co-authored-by: DarkLight1337 Signed-off-by: Alvant --- requirements-openvino.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/requirements-openvino.txt b/requirements-openvino.txt index 800d59e2b9483..ac54cf0c3288f 100644 --- a/requirements-openvino.txt +++ b/requirements-openvino.txt @@ -1,8 +1,8 @@ # Common dependencies -r requirements-common.txt -# OpenVINO dependencies -torch >= 2.1.2 -openvino ~= 2024.4.0 -openvino-tokenizers[transformers] ~= 2024.4.0 -optimum-intel[openvino] >= 1.19.0 +torch == 2.4.0 # should be aligned with "common" vLLM torch version +openvino >= 2024.4.0 # since 2024.4.0 both CPU and GPU support Paged Attention + +optimum @ git+https://github.com/huggingface/optimum.git@main # latest optimum is used to support latest transformers version +optimum-intel[nncf] @ git+https://github.com/huggingface/optimum-intel.git@main # latest optimum-intel is used to support latest transformers version