Skip to content

Commit 35df339

Browse files
authored
TPRD-1590: OpenVINO 2025.2.0 version updated (#105)
1 parent 19f14d2 commit 35df339

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Follow the steps below to build the backend shared library.
5757
```
5858
$ mkdir build
5959
$ cd build
60-
$ cmake -DCMAKE_INSTALL_PREFIX:PATH=`pwd`/install -DTRITON_BUILD_OPENVINO_VERSION=2025.1.0 -DTRITON_BUILD_CONTAINER_VERSION=25.04 ..
60+
$ cmake -DCMAKE_INSTALL_PREFIX:PATH=`pwd`/install -DTRITON_BUILD_OPENVINO_VERSION=2025.2.0 -DTRITON_BUILD_CONTAINER_VERSION=25.06 ..
6161
$ make install
6262
```
6363

tools/gen_openvino_dockerfile.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ def dockerfile_for_windows(output_file):
151151
# from source.
152152
# TODO: Unify build steps between windows and linux.
153153
154-
ARG OPENVINO_VERSION=2025.1.0
154+
ARG OPENVINO_VERSION=2025.2.0
155155
ARG OPENVINO_BUILD_TYPE
156156
157157
WORKDIR /workspace
@@ -162,7 +162,9 @@ def dockerfile_for_windows(output_file):
162162
RUN IF "%OPENVINO_VERSION%"=="2024.5.0" curl -L https://storage.openvinotoolkit.org/repositories/openvino/packages/2024.5/windows/w_openvino_toolkit_windows_2024.5.0.17288.7975fa5da0c_x86_64.zip --output ov.zip
163163
RUN IF "%OPENVINO_VERSION%"=="2025.0.0" curl -L https://storage.openvinotoolkit.org/repositories/openvino/packages/2025.0/windows/openvino_toolkit_windows_2025.0.0.17942.1f68be9f594_x86_64.zip --output ov.zip
164164
RUN IF "%OPENVINO_VERSION%"=="2025.1.0" curl -L https://storage.openvinotoolkit.org/repositories/openvino/packages/2025.1/windows/openvino_toolkit_windows_2025.1.0.18503.6fec06580ab_x86_64.zip --output ov.zip
165+
RUN IF "%OPENVINO_VERSION%"=="2025.2.0" curl -L https://storage.openvinotoolkit.org/repositories/openvino/packages/2025.2/windows/openvino_toolkit_windows_2025.2.0.19140.c01cd93e24d_x86_64.zip --output ov.zip
165166
RUN IF not exist ov.zip ( echo "OpenVINO version %OPENVINO_VERSION% not supported" && exit 1 )
167+
166168
RUN tar -xf ov.zip
167169
RUN powershell.exe "Get-ChildItem w_openvino_toolkit_windows_* | foreach { ren $_.fullname install }"
168170

0 commit comments

Comments
 (0)