Skip to content

Use OV/GenAI/Tokenizers 2025.2 RC1 #3307

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
May 26, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,9 @@ FUZZER_BUILD ?= 0
# NOTE: when changing any value below, you'll need to adjust WORKSPACE file by hand:
# - uncomment source build section, comment binary section
# - adjust binary version path - version variable is not passed to WORKSPACE file!
OV_SOURCE_BRANCH ?= 5928ba60fd5f592cbe9397c8a8425c927d78d98d # master 2025-05-03
OV_SOURCE_BRANCH ?= 87425bc78ca82bee69541e6c35acceb4bfabd31c # releases/2025/2 RC1
OV_CONTRIB_BRANCH ?= c39462ca8d7c550266dc70cdbfbe4fc8c5be0677 # master / 2024-10-31
OV_TOKENIZERS_BRANCH ?= 979cba29ffc1f99d3c53e28a2c29b750390e59d9 # master 2025-04-25
OV_TOKENIZERS_BRANCH ?= 130827ab18915d60580c7522fc88990d59ef914f # releases/2025/2 RC1

OV_SOURCE_ORG ?= openvinotoolkit
OV_CONTRIB_ORG ?= openvinotoolkit
Expand Down Expand Up @@ -161,11 +161,11 @@ ifeq ($(findstring ubuntu,$(BASE_OS)),ubuntu)
ifeq ($(BASE_OS_TAG),24.04)
OS=ubuntu24
INSTALL_DRIVER_VERSION ?= "24.52.32224"
DLDT_PACKAGE_URL ?= https://storage.openvinotoolkit.org/repositories/openvino/packages/nightly/2025.2.0-18918-5928ba60fd5/openvino_toolkit_ubuntu24_2025.2.0.dev20250503_x86_64.tgz
DLDT_PACKAGE_URL ?= https://storage.openvinotoolkit.org/repositories/openvino/packages/pre-release/2025.2.0rc1/openvino_toolkit_ubuntu24_2025.2.0.dev20250522_x86_64.tgz
else ifeq ($(BASE_OS_TAG),22.04)
OS=ubuntu22
INSTALL_DRIVER_VERSION ?= "24.39.31294"
DLDT_PACKAGE_URL ?= https://storage.openvinotoolkit.org/repositories/openvino/packages/nightly/2025.2.0-18918-5928ba60fd5/openvino_toolkit_ubuntu22_2025.2.0.dev20250503_x86_64.tgz
DLDT_PACKAGE_URL ?= https://storage.openvinotoolkit.org/repositories/openvino/packages/pre-release/2025.2.0rc1/openvino_toolkit_ubuntu22_2025.2.0.dev20250522_x86_64.tgz
endif
endif
ifeq ($(BASE_OS),redhat)
Expand All @@ -174,7 +174,7 @@ ifeq ($(BASE_OS),redhat)
BASE_IMAGE ?= registry.access.redhat.com/ubi9/ubi:$(BASE_OS_TAG_REDHAT)
BASE_IMAGE_RELEASE=registry.access.redhat.com/ubi9/ubi-minimal:$(BASE_OS_TAG_REDHAT)
DIST_OS=redhat
DLDT_PACKAGE_URL ?= https://storage.openvinotoolkit.org/repositories/openvino/packages/nightly/2025.2.0-18918-5928ba60fd5/openvino_toolkit_rhel8_2025.2.0.dev20250503_x86_64.tgz
DLDT_PACKAGE_URL ?= https://storage.openvinotoolkit.org/repositories/openvino/packages/pre-release/2025.2.0rc1/openvino_toolkit_rhel8_2025.2.0.dev20250522_x86_64.tgz
INSTALL_DRIVER_VERSION ?= "24.52.32224"
endif

Expand Down
2 changes: 1 addition & 1 deletion third_party/llm_engine/llm_engine.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def llm_engine():
new_git_repository(
name = "llm_engine",
remote = "https://github.com/openvinotoolkit/openvino.genai",
commit = "a8146b175283a979023b47ce6192e71b070bc70f", # master 2025-05-02
commit = "b7e8993565358a9e2d8f69bc915bfbf8e5ea9ed4", # releases/2025/2 RC1
build_file = "@_llm_engine//:BUILD",
init_submodules = True,
recursive_init_submodules = True,
Expand Down
6 changes: 3 additions & 3 deletions windows_install_build_dependencies.bat
Original file line number Diff line number Diff line change
Expand Up @@ -124,9 +124,9 @@ IF /I EXIST %bash_path% (

:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
::::::::::::::::::::::: GENAI/OPENVINO - reinstalled per build trigger
set "genai_dir=openvino_genai_windows_2025.2.0.0.dev20250503_x86_64"
set "genai_ver=openvino_genai_windows_2025.2.0.0.dev20250503_x86_64.zip"
set "genai_http=https://storage.openvinotoolkit.org/repositories/openvino_genai/packages/nightly/2025.2.0.0.dev20250503/"
set "genai_dir=openvino_genai_windows_2025.2.0.0rc1_x86_64"
set "genai_ver=openvino_genai_windows_2025.2.0.0rc1_x86_64.zip"
set "genai_http=https://storage.openvinotoolkit.org/repositories/openvino_genai/packages/pre-release/2025.2.0.0rc1/"

set "genai_zip=%BAZEL_SHORT_PATH%\%genai_ver%"
set "genai_workspace=C:\\\\opt\\\\openvino\\\\runtime"
Expand Down