Skip to content

Commit

Permalink
CI: install 2024 versions of Intel OCL libraries
Browse files Browse the repository at this point in the history
The intel oneAPI repository was recently updated, which broke our
install scripts:

```
The following packages have unmet dependencies:
intel-oneapi-runtime-compilers : Depends: intel-oneapi-runtime-openmp (= 2023.2.2-47) but 2024.0.0-49819 is to be installed
```

Looking at Intel's installation guide:
https://www.intel.com/content/www/us/en/docs/oneapi/installation-guide-linux/2024-0/apt.html
Intel recommends installing a metapackage `intel-oneapi-runtime-libs`.
This package now depends on `intel-oneapi-runtime-opencl-2024` and
`intel-oneapi-runtime-compilers-2024`, so it seems like we should use
these packages now.

MISC
  • Loading branch information
johningve committed Nov 20, 2023
1 parent bbe817f commit f067070
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion continuous-integration/linux/platform-dependent/common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ function ubuntu_install_opencl_cpu_runtime {
apt update || exit $?

# Install the OpenCL runtime
apt --assume-yes install intel-oneapi-runtime-opencl intel-oneapi-runtime-compilers || exit $?
apt --assume-yes install intel-oneapi-runtime-opencl-2024 intel-oneapi-runtime-compilers-2024 || exit $?

}

Expand Down

0 comments on commit f067070

Please sign in to comment.