mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-15 13:01:45 +08:00

- IGC stopped to support Ubuntu 16.04 Change-Id: I45a4993c7ffa2633ec6060b924e4a70ba791347b Signed-off-by: Jacek Danecki <jacek.danecki@intel.com>
102 lines
2.1 KiB
Markdown
102 lines
2.1 KiB
Markdown
# NEO OpenCL in Linux distributions
|
|
|
|
[](https://repology.org/project/intel-compute-runtime/versions)
|
|
|
|
## Arch Linux*
|
|
|
|
```
|
|
pacman -S intel-compute-runtime
|
|
```
|
|
|
|
## Centos* 7, 8, Red Hat Enterprise Linux* 7
|
|
|
|
```
|
|
yum install yum-plugin-copr
|
|
yum copr enable jdanecki/intel-opencl
|
|
yum install intel-opencl
|
|
```
|
|
|
|
## Clear Linux
|
|
|
|
```
|
|
swupd bundle-add computer-vision-basic
|
|
```
|
|
|
|
## Exherbo Linux*
|
|
|
|
```
|
|
cave resolve --execute intel-compute-runtime
|
|
```
|
|
|
|
## Fedora* 30, 31, rawhide, Red Hat Enterprise Linux* 8 Beta, Mageia* 7
|
|
|
|
```
|
|
dnf install dnf-plugins-core
|
|
dnf copr enable jdanecki/intel-opencl
|
|
dnf install intel-opencl
|
|
```
|
|
|
|
## Gentoo*, Funtoo*
|
|
|
|
```
|
|
emerge intel-neo
|
|
```
|
|
|
|
## NixOS
|
|
|
|
```
|
|
nix-channel --add https://nixos.org/channels/nixpkgs-unstable
|
|
nix-channel --update
|
|
nix-env -i intel-compute-runtime
|
|
```
|
|
|
|
## OpenSUSE Leap 15.1
|
|
|
|
```
|
|
zypper addrepo -r https://copr.fedorainfracloud.org/coprs/jdanecki/intel-opencl/repo/opensuse-leap-15.1/jdanecki-intel-opencl-opensuse-leap-15.1.repo
|
|
zypper install intel-opencl
|
|
```
|
|
|
|
## OpenSUSE tumbleweed
|
|
|
|
```
|
|
zypper addrepo -r https://copr.fedorainfracloud.org/coprs/jdanecki/intel-opencl/repo/opensuse-tumbleweed/jdanecki-intel-opencl-opensuse-tumbleweed.repo
|
|
zypper install intel-opencl
|
|
```
|
|
|
|
## PLD Linux*
|
|
|
|
```
|
|
ipoldek install intel-gmmlib intel-graphics-compiler intel-compute-runtime
|
|
```
|
|
|
|
## Ubuntu* ppa for 18.04, 19.10, 20.04
|
|
|
|
```
|
|
add-apt-repository ppa:intel-opencl/intel-opencl
|
|
apt-get update
|
|
apt-get install intel-opencl-icd
|
|
```
|
|
|
|
## Ubuntu* 19.10, 20.04
|
|
|
|
```
|
|
apt-get install intel-opencl-icd
|
|
```
|
|
|
|
## Building and installation
|
|
|
|
* [Ubuntu*](https://github.com/intel/compute-runtime/blob/master/BUILD.md)
|
|
* [Centos* 8](https://github.com/intel/compute-runtime/blob/master/BUILD.md)
|
|
* Scripts to build or download rpm (copr) and deb (github and ppa) packages are available in [neo-specs](https://github.com/JacekDanecki/neo-specs) repository.
|
|
|
|
# NEO in other distributions
|
|
|
|
## FreeBSD*, DragonFly*
|
|
|
|
```
|
|
pkg install intel-compute-runtime
|
|
```
|
|
|
|
(*) Other names and brands may be claimed as property of others.
|