Skip to content

Commit

Permalink
Merge branch 'master' into add_spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
akopytko authored Dec 12, 2024
2 parents 19c869c + 2813758 commit 75ee00c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ Below are the instructions on how to install the OpenCL packages on supported Li
.. code-block:: sh
apt-get install -y ocl-icd-libopencl1 intel-opencl-icd intel-level-zero-gpu level-zero
sudo usermod -a -G render $LOGNAME
.. tab-item:: Ubuntu 20.04 LTS
:sync: ubuntu-20
Expand All @@ -57,6 +58,7 @@ Below are the instructions on how to install the OpenCL packages on supported Li
echo 'deb [arch=amd64 signed-by=/usr/share/keyrings/intel-graphics.gpg] https://repositories.intel.com/graphics/ubuntu focal-legacy main' | tee /etc/apt/sources.list.d/intel.gpu.focal.list && \
apt-get update
apt-get update && apt-get install -y --no-install-recommends intel-opencl-icd intel-level-zero-gpu level-zero
sudo usermod -a -G render $LOGNAME
Alternatively, download older `deb` version from `here <https://github.com/intel/compute-runtime/releases>`__. Note that older driver version might not include some of the bug fixes and might be not supported on some latest platforms. Check the supported hardware for the versions you are installing.

Expand Down Expand Up @@ -135,6 +137,6 @@ Additional Resources
* `Docker CI framework for Intel® Distribution of OpenVINO™ toolkit <https://github.com/openvinotoolkit/docker_ci/blob/master/README.md>`__
* `Get Started with DockerHub CI for Intel® Distribution of OpenVINO™ toolkit <https://github.com/openvinotoolkit/docker_ci/blob/master/get-started.md>`__
* `Dockerfiles with Intel® Distribution of OpenVINO™ toolkit <https://github.com/openvinotoolkit/docker_ci/blob/master/dockerfiles/README.md>`__

* `GPU Driver issue troubleshoot <https://github.com/openvinotoolkit/openvino/blob/master/src/plugins/intel_gpu/docs/gpu_plugin_driver_troubleshooting.md>`


Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,12 @@ To get the support of Intel® Iris® Xe MAX Graphics with Linux, follow the [dri

## 3. Make sure that user has all required permissions to work with GPU device

Add the current Linux user to the `video` group:
Add the current Linux user to the `video` and `render` group:
```
sudo usermod -a -G video "$(whoami)"
sudo usermod -a -G render "$(whoami)"
```
Note: The required group depends on the Linux distribution. Adding to both `video` and `render` is a safe option.

## 4. Make sure that iGPU is enabled

Expand Down

0 comments on commit 75ee00c

Please sign in to comment.