Skip to content

Commit 2813758

Browse files
authored
[DOC][GPU] Described to add user to render group in gpu configuration (openvinotoolkit#28030)
### Tickets: - github issue openvinotoolkit#27762
1 parent 45bf77b commit 2813758

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

docs/articles_en/get-started/configurations/configurations-intel-gpu.rst

+3-1
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ Below are the instructions on how to install the OpenCL packages on supported Li
4444
.. code-block:: sh
4545
4646
apt-get install -y ocl-icd-libopencl1 intel-opencl-icd intel-level-zero-gpu level-zero
47+
sudo usermod -a -G render $LOGNAME
4748
4849
.. tab-item:: Ubuntu 20.04 LTS
4950
:sync: ubuntu-20
@@ -57,6 +58,7 @@ Below are the instructions on how to install the OpenCL packages on supported Li
5758
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 && \
5859
apt-get update
5960
apt-get update && apt-get install -y --no-install-recommends intel-opencl-icd intel-level-zero-gpu level-zero
61+
sudo usermod -a -G render $LOGNAME
6062
6163
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.
6264

@@ -135,6 +137,6 @@ Additional Resources
135137
* `Docker CI framework for Intel® Distribution of OpenVINO™ toolkit <https://github.com/openvinotoolkit/docker_ci/blob/master/README.md>`__
136138
* `Get Started with DockerHub CI for Intel® Distribution of OpenVINO™ toolkit <https://github.com/openvinotoolkit/docker_ci/blob/master/get-started.md>`__
137139
* `Dockerfiles with Intel® Distribution of OpenVINO™ toolkit <https://github.com/openvinotoolkit/docker_ci/blob/master/dockerfiles/README.md>`__
138-
140+
* `GPU Driver issue troubleshoot <https://github.com/openvinotoolkit/openvino/blob/master/src/plugins/intel_gpu/docs/gpu_plugin_driver_troubleshooting.md>`
139141

140142

src/plugins/intel_gpu/docs/gpu_plugin_driver_troubleshooting.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,12 @@ To get the support of Intel® Iris® Xe MAX Graphics with Linux, follow the [dri
3333

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

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

4143
## 4. Make sure that iGPU is enabled
4244

0 commit comments

Comments
 (0)