2021-06-15 19:05:19 +00:00
|
|
|
<!---
|
|
|
|
|
|
|
|
Copyright (C) 2020-2021 Intel Corporation
|
|
|
|
|
|
|
|
SPDX-License-Identifier: MIT
|
|
|
|
|
|
|
|
-->
|
|
|
|
|
2020-04-03 14:06:08 +02:00
|
|
|
# NEO OpenCL in Linux distributions
|
|
|
|
|
|
|
|
[](https://repology.org/project/intel-compute-runtime/versions)
|
|
|
|
|
|
|
|
## Arch Linux*
|
|
|
|
|
|
|
|
```
|
|
|
|
pacman -S intel-compute-runtime
|
|
|
|
```
|
|
|
|
|
|
|
|
## Exherbo Linux*
|
|
|
|
|
|
|
|
```
|
|
|
|
cave resolve --execute intel-compute-runtime
|
|
|
|
```
|
|
|
|
|
|
|
|
## Gentoo*, Funtoo*
|
|
|
|
|
|
|
|
```
|
|
|
|
emerge intel-neo
|
|
|
|
```
|
|
|
|
|
|
|
|
## NixOS
|
|
|
|
|
|
|
|
```
|
|
|
|
nix-channel --add https://nixos.org/channels/nixpkgs-unstable
|
|
|
|
nix-channel --update
|
|
|
|
nix-env -i intel-compute-runtime
|
|
|
|
```
|
|
|
|
|
|
|
|
## PLD Linux*
|
|
|
|
|
|
|
|
```
|
|
|
|
ipoldek install intel-gmmlib intel-graphics-compiler intel-compute-runtime
|
|
|
|
```
|
|
|
|
|
2021-08-18 16:02:48 +02:00
|
|
|
## Ubuntu* 20.04, 21.04
|
2020-04-03 14:06:08 +02:00
|
|
|
|
|
|
|
```
|
2020-04-20 11:44:00 +02:00
|
|
|
apt install intel-opencl-icd
|
2020-04-03 14:06:08 +02:00
|
|
|
```
|
|
|
|
|
2021-04-03 00:01:27 -05:00
|
|
|
## Conda (Linux glibc>=2.12)
|
|
|
|
|
|
|
|
```
|
|
|
|
conda config --add channels conda-forge
|
|
|
|
conda install intel-compute-runtime
|
|
|
|
```
|
|
|
|
|
2020-04-03 14:06:08 +02:00
|
|
|
## 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)
|
|
|
|
|
|
|
|
# NEO in other distributions
|
|
|
|
|
|
|
|
## FreeBSD*, DragonFly*
|
|
|
|
|
|
|
|
```
|
|
|
|
pkg install intel-compute-runtime
|
|
|
|
```
|
|
|
|
|
|
|
|
(*) Other names and brands may be claimed as property of others.
|