Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
Remove links to inactive projects on:
- Copr
- Launchpad
- Semaphore CI
- SourceForge

Remove scripts to build on Semaphore CI and Travis

Signed-off-by: Jacek Danecki <jacek.danecki@intel.com>
4 contributors

Users who have contributed to this file

@JacekDanecki @AdamCetnerowski @lukaszgotszaldintel @ArturHarasimiuk

Building NEO driver

Instructions have been tested on Ubuntu* and CentOS*. They assume a clean installation of a stable version.

  1. Download & install required packages

Example (Ubuntu):

sudo apt-get install cmake g++ git pkg-config

Example (CentOS):

sudo dnf install gcc-c++ cmake git make
  1. Install required dependencies

Neo requires:

Please visit their repositories for building and instalation instructions.

Use versions compatible with selected Neo release.

  1. Create workspace folder and download sources:

Example:

mkdir workspace
cd workspace
git clone https://github.com/intel/compute-runtime neo
  1. Create folder for build:

Example:

mkdir build
  1. (Optional) Enabling additional extensions
  1. Build and install

Example:

cd build
cmake -DCMAKE_BUILD_TYPE=Release -DNEO_SKIP_UNIT_TESTS=1 ../neo
make -j`nproc`
sudo make install

(*) Other names and brands may be claimed as property of others.