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
4 changes: 2 additions & 2 deletions Dockerfile.redhat
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ RUN dnf install -y -d6 \

WORKDIR /

ARG INSTALL_DRIVER_VERSION="24.52.32224"
ARG INSTALL_DRIVER_VERSION="25.18.33578"
# GPU testing in build img & remote tensors dependencies
WORKDIR /usr/lib64/
RUN ln -s libOpenCL.so.1 libOpenCL.so
Expand Down Expand Up @@ -410,7 +410,7 @@ LABEL "summary"="OpenVINO(TM) Model Server"
LABEL "description"="OpenVINO(TM) Model Server is a solution for serving AI models"
LABEL "maintainer"="dariusz.trawinski@intel.com"
ARG INSTALL_RPMS_FROM_URL=
ARG INSTALL_DRIVER_VERSION="24.52.32224"
ARG INSTALL_DRIVER_VERSION="25.18.33578"
ARG GPU=0
ARG debug_bazel_flags=
LABEL bazel-build-flags=${debug_bazel_flags}
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ ifeq ($(findstring ubuntu,$(BASE_OS)),ubuntu)
BASE_IMAGE_RELEASE=$(BASE_IMAGE)
ifeq ($(BASE_OS_TAG),24.04)
OS=ubuntu24
INSTALL_DRIVER_VERSION ?= "26.18.38308"
INSTALL_DRIVER_VERSION ?= "26.31.39395"
DLDT_PACKAGE_URL ?= $(DLDT_PACKAGE_URL_UBUNTU24)
Comment thread
rasapala marked this conversation as resolved.
else ifeq ($(BASE_OS_TAG),22.04)
OS=ubuntu22
Expand All @@ -185,7 +185,7 @@ ifeq ($(BASE_OS),redhat)
BASE_IMAGE_RELEASE=registry.access.redhat.com/ubi9/ubi-minimal:$(BASE_OS_TAG_REDHAT)
DIST_OS=redhat
DLDT_PACKAGE_URL ?= $(DLDT_PACKAGE_URL_RHEL) # not used
INSTALL_DRIVER_VERSION ?= "24.52.32224"
INSTALL_DRIVER_VERSION ?= "25.18.33578"
endif

OVMS_CPP_DOCKER_IMAGE ?= openvino/model_server
Expand Down
9 changes: 9 additions & 0 deletions install_redhat_gpu_drivers.sh
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,15 @@ case $INSTALL_DRIVER_VERSION in \
rpm -ivh https://repositories.intel.com/gpu/rhel/9.6/pool/i/intel-level-zero-gpu-1.6.32567.19-1099.el9_5.x86_64.rpm ; \
rpm -ivh https://repositories.intel.com/gpu/rhel/9.6/pool/l/level-zero-1.20.2.0-1098.el9_5.x86_64.rpm ; \
;; \
"25.18.33578") \
$DNF_TOOL install --nodocs -y libedit libnl3; \
rpm -ivh https://repositories.intel.com/gpu/rhel/9.7/pool/i/intel-gmmlib-22.7.2-i1146.el9_7.x86_64.rpm ; \
rpm -ivh https://repositories.intel.com/gpu/rhel/9.7/pool/i/intel-igc-core-2.11.43-1146.el9_7.x86_64.rpm ; \
rpm -ivh https://repositories.intel.com/gpu/rhel/9.7/pool/i/intel-igc-opencl-2.11.43-1146.el9_7.x86_64.rpm ; \
rpm -ivh https://repositories.intel.com/gpu/rhel/9.7/pool/i/intel-opencl-25.18.33578.77-1146.el9_7.x86_64.rpm ; \
rpm -ivh https://repositories.intel.com/gpu/rhel/9.7/pool/i/intel-level-zero-gpu-1.6.33578.77-1146.el9_7.x86_64.rpm ; \
rpm -ivh https://repositories.intel.com/gpu/rhel/9.7/pool/l/level-zero-1.24.0.0-1146.el9_7.x86_64.rpm ; \
;; \

*) \
echo "ERROR: Unrecognized driver ${INSTALL_DRIVER_VERSION}." ; \
Expand Down
10 changes: 10 additions & 0 deletions install_ubuntu_gpu_drivers.sh
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,16 @@ case $INSTALL_DRIVER_VERSION in \
curl -L -O https://github.com/intel/intel-graphics-compiler/releases/download/v2.34.4/intel-igc-opencl-2_2.34.4+21428_amd64.deb; \
dpkg -i *.deb && rm -Rf /tmp/gpu_deps ; \
;; \
"26.31.39395") \
mkdir /tmp/gpu_deps && cd /tmp/gpu_deps && \
curl -fL -O https://github.com/intel/intel-graphics-compiler/releases/download/v2.40.13/intel-igc-core-2_2.40.13+22418_amd64.deb && \
curl -fL -O https://github.com/intel/intel-graphics-compiler/releases/download/v2.40.13/intel-igc-opencl-2_2.40.13+22418_amd64.deb && \
curl -fL -O https://github.com/intel/compute-runtime/releases/download/26.31.39395.13/intel-ocloc_26.31.39395.13-0_amd64.deb && \
curl -fL -O https://github.com/intel/compute-runtime/releases/download/26.31.39395.13/intel-opencl-icd_26.31.39395.13-0_amd64.deb && \
curl -fL -O https://github.com/intel/compute-runtime/releases/download/26.31.39395.13/libigdgmm12_22.10.0_amd64.deb && \
curl -fL -O https://github.com/intel/compute-runtime/releases/download/26.31.39395.13/libze-intel-gpu1_26.31.39395.13-0_amd64.deb && \
dpkg -i ./*.deb && cd / && rm -Rf /tmp/gpu_deps ; \
;; \
Comment thread
Copilot marked this conversation as resolved.
*) \
dpkg -P intel-gmmlib intel-igc-core intel-igc-opencl intel-level-zero-gpu intel-ocloc intel-opencl intel-opencl-icd && \
apt-get update && apt-get -y --no-install-recommends install dpkg-dev && rm -rf /var/lib/apt/lists/* && \
Expand Down