Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ Follow the steps below to build the backend shared library.
```
$ mkdir build
$ cd build
$ cmake -DCMAKE_INSTALL_PREFIX:PATH=`pwd`/install -DTRITON_BUILD_OPENVINO_VERSION=2025.2.0 -DTRITON_BUILD_CONTAINER_VERSION=25.06 ..
$ cmake -DCMAKE_INSTALL_PREFIX:PATH=`pwd`/install -DTRITON_BUILD_OPENVINO_VERSION=2025.3.0 -DTRITON_BUILD_CONTAINER_VERSION=25.08 ..
$ make install
```

Expand Down
3 changes: 2 additions & 1 deletion tools/gen_openvino_dockerfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ def dockerfile_for_windows(output_file):
# from source.
# TODO: Unify build steps between windows and linux.

ARG OPENVINO_VERSION=2025.2.0
ARG OPENVINO_VERSION=2025.3.0
ARG OPENVINO_BUILD_TYPE

WORKDIR /workspace
Expand All @@ -163,6 +163,7 @@ def dockerfile_for_windows(output_file):
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
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
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
RUN IF "%OPENVINO_VERSION%"=="2025.3.0" curl -L https://storage.openvinotoolkit.org/repositories/openvino/packages/2025.3/windows/openvino_toolkit_windows_2025.3.0.19807.44526285f24_x86_64.zip --output ov.zip
RUN IF not exist ov.zip ( echo "OpenVINO version %OPENVINO_VERSION% not supported" && exit 1 )

RUN tar -xf ov.zip
Expand Down