diff --git a/Makefile b/Makefile index 84d4ad07ab..f1344c567b 100644 --- a/Makefile +++ b/Makefile @@ -160,7 +160,7 @@ ifeq ($(findstring ubuntu,$(BASE_OS)),ubuntu) BASE_IMAGE_RELEASE=$(BASE_IMAGE) ifeq ($(BASE_OS_TAG),24.04) OS=ubuntu24 - INSTALL_DRIVER_VERSION ?= "24.52.32224" + INSTALL_DRIVER_VERSION ?= "25.27.34303" DLDT_PACKAGE_URL ?= https://storage.openvinotoolkit.org/repositories/openvino/packages/pre-release/2025.3.0rc1/openvino_toolkit_ubuntu24_2025.3.0.dev20250821_x86_64.tgz else ifeq ($(BASE_OS_TAG),22.04) OS=ubuntu22 diff --git a/install_ubuntu_gpu_drivers.sh b/install_ubuntu_gpu_drivers.sh index 6d16c7f272..0c5762c00c 100755 --- a/install_ubuntu_gpu_drivers.sh +++ b/install_ubuntu_gpu_drivers.sh @@ -52,13 +52,14 @@ case $INSTALL_DRIVER_VERSION in \ curl -L -O https://github.com/intel/intel-graphics-compiler/releases/download/v2.5.6/intel-igc-opencl-2_2.5.6+18417_amd64.deb ; \ dpkg -i *.deb && rm -Rf /tmp/gpu_deps ; \ ;; \ -"25.13.33276") \ +"25.27.34303") \ mkdir /tmp/gpu_deps && cd /tmp/gpu_deps ; \ - curl -L -O https://github.com/intel/compute-runtime/releases/download/25.13.33276.16/intel-level-zero-gpu_1.6.33276.16_amd64.deb; \ - curl -L -O https://github.com/intel/compute-runtime/releases/download/25.13.33276.16/intel-opencl-icd_25.13.33276.16_amd64.deb; \ - curl -L -O https://github.com/intel/compute-runtime/releases/download/25.13.33276.16/libigdgmm12_22.7.0_amd64.deb; \ - curl -L -O https://github.com/intel/intel-graphics-compiler/releases/download/v2.10.8/intel-igc-core-2_2.10.8+18926_amd64.deb; \ - curl -L -O https://github.com/intel/intel-graphics-compiler/releases/download/v2.10.8/intel-igc-opencl-2_2.10.8+18926_amd64.deb; \ + curl -L -O https://github.com/intel/compute-runtime/releases/download/25.27.34303.5/libze-intel-gpu1_25.27.34303.5-0_amd64.deb; \ + curl -L -O https://github.com/intel/compute-runtime/releases/download/25.27.34303.5/intel-opencl-icd_25.27.34303.5-0_amd64.deb; \ + curl -L -O https://github.com/intel/compute-runtime/releases/download/25.27.34303.5/libigdgmm12_22.7.2_amd64.deb; \ + curl -L -O https://github.com/intel/compute-runtime/releases/download/25.27.34303.5/intel-ocloc_25.27.34303.5-0_amd64.deb; \ + curl -L -O https://github.com/intel/intel-graphics-compiler/releases/download/v2.14.1/intel-igc-core-2_2.14.1+19448_amd64.deb; \ + curl -L -O https://github.com/intel/intel-graphics-compiler/releases/download/v2.14.1/intel-igc-opencl-2_2.14.1+19448_amd64.deb; \ dpkg -i *.deb && rm -Rf /tmp/gpu_deps ; \ ;; \ *) \