Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[DOCS] Update Installation Guide - GPU steps #2308

Merged
Merged
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 15 additions & 10 deletions docs/install_guides/installing-openvino-linux.md
Original file line number Diff line number Diff line change
Expand Up @@ -320,17 +320,22 @@ cd /opt/intel/openvino/install_dependencies/
```sh
sudo -E su
```
3. Install the **Intel® Graphics Compute Runtime for OpenCL™** driver components required to use the GPU plugin and write custom layers for Intel® Integrated Graphics:
3. Install the **Intel® Graphics Compute Runtime for OpenCL™** driver components required to use the GPU plugin and write custom layers for Intel® Integrated Graphics. Run the installation script with super user rights:
```sh
./install_NEO_OCL_driver.sh
```
You may see the following command line output:

- Add OpenCL user to video group
- Run script to install the 4.14 kernel script

Ignore those suggestions and continue.

sudo -E ./install_NEO_OCL_driver.sh
aalborov marked this conversation as resolved.
Show resolved Hide resolved
```
The drivers are not included in the package and the script downloads them. Make sure you have the
internet connection for this step.

The script compares the driver version on the system to the current version.
If the driver version on the system is higher or equal to the current version, the script does
not install a new driver.
If the version of the driver is lower than the current version, the script uninstalls the lower
and installs the current version with your permission.
If the script fails to uninstall the driver, uninstall it manually.
You may see the following command line output:
aalborov marked this conversation as resolved.
Show resolved Hide resolved
- Add OpenCL user to video group
Ignore this suggestion and continue.
4. **Optional** Install header files to allow compiling a new code. You can find the header files at [Khronos OpenCL™ API Headers](https://github.com/KhronosGroup/OpenCL-Headers.git).

## <a name="additional-NCS-steps"></a>Steps for Intel® Neural Compute Stick 2
Expand Down