Skip to content

Commit 3e03da2

Browse files
authored
upgrade gpu drivers to 22.43 (openvinotoolkit#1830)
1 parent 7e6598b commit 3e03da2

File tree

3 files changed

+26
-4
lines changed

3 files changed

+26
-4
lines changed

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ ifeq ($(BASE_OS),ubuntu)
9595
BASE_IMAGE ?= ubuntu:$(BASE_OS_TAG_UBUNTU)
9696
BASE_IMAGE_RELEASE=$(BASE_IMAGE)
9797
endif
98-
INSTALL_DRIVER_VERSION ?= "22.35.24055"
98+
INSTALL_DRIVER_VERSION ?= "22.43.24595"
9999
DLDT_PACKAGE_URL ?= http://s3.toolbox.iotg.sclab.intel.com/ov-packages/l_openvino_toolkit_ubuntu20_2023.0.0.10908.5adf3b5ca82_x86_64.tgz
100100
endif
101101
ifeq ($(BASE_OS),redhat)
@@ -108,7 +108,7 @@ ifeq ($(BASE_OS),redhat)
108108
BASE_IMAGE_RELEASE=registry.access.redhat.com/ubi8/ubi-minimal:$(BASE_OS_TAG_REDHAT)
109109
endif
110110
DIST_OS=redhat
111-
INSTALL_DRIVER_VERSION ?= "22.28.23726"
111+
INSTALL_DRIVER_VERSION ?= "22.43.24595"
112112
DLDT_PACKAGE_URL ?= http://s3.toolbox.iotg.sclab.intel.com/ov-packages/l_openvino_toolkit_rhel8_2023.0.0.10908.5adf3b5ca82_x86_64.tgz
113113
endif
114114

release_files/Dockerfile.redhat

+10-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ LABEL "description"="OpenVINO(TM) Model Server is a solution for serving AI mode
3939
ARG INSTALL_RPMS_FROM_URL=
4040
ENV INSTALL_RPMS_FROM_URL=$INSTALL_RPMS_FROM_URL
4141

42-
ARG INSTALL_DRIVER_VERSION="22.28.23726"
42+
ARG INSTALL_DRIVER_VERSION="22.43.24595"
4343
ENV INSTALL_DRIVER_VERSION=$INSTALL_DRIVER_VERSION
4444
ARG NVIDIA=0
4545
ARG GPU=1
@@ -91,6 +91,15 @@ RUN if [ -f /usr/bin/dnf ] ; then export DNF_TOOL=dnf ; else export DNF_TOOL=mic
9191
rpm -ivh https://repositories.intel.com/graphics/rhel/8.5-devel/intel-level-zero-gpu-1.3.23453-i392.el8.x86_64.rpm ; \
9292
rpm -ivh https://repositories.intel.com/graphics/rhel/8.5-devel/level-zero-1.8.1-i392.el8.x86_64.rpm ; \
9393
;; \
94+
"22.43.24595") \
95+
$DNF_TOOL install -y libedit ; \
96+
rpm -ivh https://repositories.intel.com/graphics/rhel/8.6/intel-gmmlib-22.3.1-i529.el8.x86_64.rpm ; \
97+
rpm -ivh https://repositories.intel.com/graphics/rhel/8.6/intel-igc-core-1.0.12504.6-i537.el8.x86_64.rpm ; \
98+
rpm -ivh https://repositories.intel.com/graphics/rhel/8.6/intel-igc-opencl-1.0.12504.6-i537.el8.x86_64.rpm ; \
99+
rpm -ivh https://repositories.intel.com/graphics/rhel/8.6/intel-opencl-22.43.24595.35-i538.el8.x86_64.rpm ; \
100+
rpm -ivh https://repositories.intel.com/graphics/rhel/8.6/intel-level-zero-gpu-1.3.24595.35-i538.el8.x86_64.rpm ; \
101+
rpm -ivh https://repositories.intel.com/graphics/rhel/8.6/level-zero-1.8.8-i524.el8.x86_64.rpm ; \
102+
;; \
94103
*) \
95104
echo "ERROR: Unrecognized driver ${INSTALL_DRIVER_VERSION}." ; \
96105
exit 1 ; \

release_files/Dockerfile.ubuntu

+14-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ FROM $BASE_IMAGE as release
7373
ARG INSTALL_RPMS_FROM_URL=
7474
ENV INSTALL_RPMS_FROM_URL=$INSTALL_RPMS_FROM_URL
7575
ENV HDDL_INSTALL_DIR=/ovms/lib/hddl
76-
ARG INSTALL_DRIVER_VERSION="22.35.24055"
76+
ARG INSTALL_DRIVER_VERSION="22.43.24595"
7777
ENV INSTALL_DRIVER_VERSION=$INSTALL_DRIVER_VERSION
7878
ARG GPU=1
7979
ARG NVIDIA=0
@@ -130,6 +130,19 @@ RUN apt-get update -y ; \
130130
apt-get clean ; \
131131
rm -rf /var/lib/apt/lists/* && rm -rf /tmp/* ; \
132132
;; \
133+
"22.43.24595") \
134+
apt-get update && apt-get install -y --no-install-recommends gpg gpg-agent && \
135+
curl https://repositories.intel.com/graphics/intel-graphics.key | gpg --dearmor --output /usr/share/keyrings/intel-graphics.gpg && \
136+
echo 'deb [arch=amd64 signed-by=/usr/share/keyrings/intel-graphics.gpg] https://repositories.intel.com/graphics/ubuntu focal-legacy main' | tee /etc/apt/sources.list.d/intel.gpu.focal.list && \
137+
apt-get update && \
138+
apt-get install -y --no-install-recommends \
139+
intel-opencl-icd=22.43.24595.35+i538~20.04 \
140+
intel-level-zero-gpu=1.3.24595.35+i538~20.04 \
141+
level-zero=1.8.8+i524~u20.04 && \
142+
apt-get purge gpg gpg-agent --yes && apt-get --yes autoremove && \
143+
apt-get clean ; \
144+
rm -rf /var/lib/apt/lists/* && rm -rf /tmp/* ; \
145+
;; \
133146
*) \
134147
dpkg -P intel-gmmlib intel-igc-core intel-igc-opencl intel-level-zero-gpu intel-ocloc intel-opencl intel-opencl-icd && \
135148
apt-get update && apt-get -y --no-install-recommends install dpkg-dev && rm -rf /var/lib/apt/lists/* && \

0 commit comments

Comments
 (0)