Skip to content

Commit

Permalink
Update OpenVINO to 2024.5 (#88)
Browse files Browse the repository at this point in the history
* update OVRuntime to 2024.5

---------

Co-authored-by: Dariusz Trawinski <[email protected]>
  • Loading branch information
mc-nv and dtrawins authored Dec 11, 2024
1 parent 0a3fb4c commit 34e28dc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,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=2024.4.0 -DTRITON_BUILD_CONTAINER_VERSION=24.03 ..
$ cmake -DCMAKE_INSTALL_PREFIX:PATH=`pwd`/install -DTRITON_BUILD_OPENVINO_VERSION=2024.5.0 -DTRITON_BUILD_CONTAINER_VERSION=24.12 ..
$ 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 @@ -132,14 +132,15 @@ def dockerfile_for_windows(output_file):
# from source.
# TODO: Unify build steps between windows and linux.
ARG OPENVINO_VERSION=2024.4.0
ARG OPENVINO_VERSION=2024.5.0
ARG OPENVINO_BUILD_TYPE
WORKDIR /workspace
RUN IF "%OPENVINO_VERSION%"=="2023.3.0" curl -L https://storage.openvinotoolkit.org/repositories/openvino/packages/2023.3/windows/w_openvino_toolkit_windows_2023.3.0.13775.ceeafaf64f3_x86_64.zip --output ov.zip
RUN IF "%OPENVINO_VERSION%"=="2024.0.0" curl -L https://storage.openvinotoolkit.org/repositories/openvino/packages/2024.0/windows/w_openvino_toolkit_windows_2024.0.0.14509.34caeefd078_x86_64.zip --output ov.zip
RUN IF "%OPENVINO_VERSION%"=="2024.1.0" curl -L https://storage.openvinotoolkit.org/repositories/openvino/packages/2024.1/windows/w_openvino_toolkit_windows_2024.1.0.15008.f4afc983258_x86_64.zip --output ov.zip
RUN IF "%OPENVINO_VERSION%"=="2024.4.0" curl -L https://storage.openvinotoolkit.org/repositories/openvino/packages/2024.4/windows/w_openvino_toolkit_windows_2024.4.0.16579.c3152d32c9c_x86_64.zip --output ov.zip
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
RUN IF not exist ov.zip ( echo "OpenVINO version %OPENVINO_VERSION% not supported" && exit 1 )
RUN tar -xf ov.zip
RUN powershell.exe "Get-ChildItem w_openvino_toolkit_windows_* | foreach { ren $_.fullname install }"
Expand Down

0 comments on commit 34e28dc

Please sign in to comment.