Skip to content

New gpu drivers for redhat and ubuntu24 - #4528

Open
rasapala wants to merge 1 commit into
mainfrom
update_gpu_drivers3
Open

New gpu drivers for redhat and ubuntu24#4528
rasapala wants to merge 1 commit into
mainfrom
update_gpu_drivers3

Conversation

@rasapala

@rasapala rasapala commented Sep 9, 2026

Copy link
Copy Markdown
Collaborator

🛠 Summary

JIRA CVS-193959

🧪 Checklist

  • Unit tests added.
  • The documentation updated.
  • Change follows security best practices.
    ``

@rasapala
rasapala requested review from dtrawins and mzegla and a lite review from Copilot September 9, 2026 11:37

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🟡 Changes recommended

The new Ubuntu driver install block needs more robust failure propagation, and the updated default driver versions are currently out of sync with Dockerfile defaults/functional-test pins, risking unvalidated default build configurations.

Once you've addressed the issues Copilot identified, you can request another Copilot review.

Pull request overview

Updates the default Intel GPU driver stacks used in OVMS Docker image builds for Ubuntu 24.04 and Red Hat (UBI9), and extends the driver-install helper scripts to support the new versions.

Changes:

  • Bumped the default INSTALL_DRIVER_VERSION for Ubuntu 24.04 and Red Hat builds in the Makefile.
  • Added a new Ubuntu driver install case for 26.31.39395 (IGC + compute-runtime debs).
  • Added a new Red Hat driver install case for 25.18.33578 (Intel GPU RPMs for rhel/9.6).
File summaries
File Description
Makefile Updates default GPU driver versions for ubuntu24 and redhat build flows.
install_ubuntu_gpu_drivers.sh Adds install path for compute-runtime 26.31.39395 on Ubuntu.
install_redhat_gpu_drivers.sh Adds install path for 25.18.33578 RPM stack on RHEL/UBI9.
Review details
  • Files reviewed: 3/3 changed files
  • Comments generated: 3
  • Review effort level: Lite

💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.

Comment thread Makefile
Comment on lines 170 to 173
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 Makefile
Comment on lines 184 to 188
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
Comment on lines +105 to +114
"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 && rm -Rf /tmp/gpu_deps ; \
;; \
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants