[main] New gpu driver for ubuntu#4286
Open
dkalinowski wants to merge 2 commits into
Open
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the Ubuntu 24.04 build configuration to use a newer Intel GPU compute runtime version and adds the corresponding package install branch in the Ubuntu GPU driver installation script.
Changes:
- Bump the default
INSTALL_DRIVER_VERSIONfor Ubuntu 24.04 builds to26.18.38308. - Add a new
casebranch ininstall_ubuntu_gpu_drivers.shto install the.debset for26.18.38308.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| Makefile | Updates the default GPU driver version used for Ubuntu 24.04 builds. |
| install_ubuntu_gpu_drivers.sh | Adds download/install steps for the new Ubuntu GPU driver version. |
Comment on lines
169
to
172
| ifeq ($(BASE_OS_TAG),24.04) | ||
| OS=ubuntu24 | ||
| INSTALL_DRIVER_VERSION ?= "26.09.37435" | ||
| INSTALL_DRIVER_VERSION ?= "26.18.38308"" | ||
| DLDT_PACKAGE_URL ?= $(DLDT_PACKAGE_URL_UBUNTU24) |
Comment on lines
+95
to
+104
| "26.18.38308") \ | ||
| mkdir /tmp/gpu_deps && cd /tmp/gpu_deps ; \ | ||
| curl -L -O https://github.com/intel/compute-runtime/releases/download/26.18.38308.1/libze-intel-gpu1_26.18.38308.1-0_amd64.deb; \ | ||
| curl -L -O https://github.com/intel/compute-runtime/releases/download/26.18.38308.1/intel-opencl-icd_26.18.38308.1-0_amd64.deb; \ | ||
| curl -L -O https://github.com/intel/compute-runtime/releases/download/26.18.38308.1/libigdgmm12_22.10.0_amd64.deb; \ | ||
| curl -L -O https://github.com/intel/compute-runtime/releases/download/26.18.38308.1/intel-ocloc_26.18.38308.1-0_amd64.deb; \ | ||
| curl -L -O https://github.com/intel/intel-graphics-compiler/releases/download/v2.34.4/intel-igc-core-2_2.34.4+21428_amd64.deb; \ | ||
| 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 ; \ | ||
| ;; \ |
dtrawins
reviewed
Jun 11, 2026
Co-authored-by: Trawinski, Dariusz <dariusz.trawinski@intel.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.