From 2813758743e30fd4af5ab2575c260b77698ab1fa Mon Sep 17 00:00:00 2001 From: Mingyu Kim Date: Thu, 12 Dec 2024 18:35:46 +0900 Subject: [PATCH] [DOC][GPU] Described to add user to render group in gpu configuration (#28030) ### Tickets: - github issue #27762 --- .../get-started/configurations/configurations-intel-gpu.rst | 4 +++- .../intel_gpu/docs/gpu_plugin_driver_troubleshooting.md | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/docs/articles_en/get-started/configurations/configurations-intel-gpu.rst b/docs/articles_en/get-started/configurations/configurations-intel-gpu.rst index e10a67fddadb53..4d1eb37007f59d 100644 --- a/docs/articles_en/get-started/configurations/configurations-intel-gpu.rst +++ b/docs/articles_en/get-started/configurations/configurations-intel-gpu.rst @@ -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 @@ -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 `__. 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. @@ -135,6 +137,6 @@ Additional Resources * `Docker CI framework for Intel® Distribution of OpenVINO™ toolkit `__ * `Get Started with DockerHub CI for Intel® Distribution of OpenVINO™ toolkit `__ * `Dockerfiles with Intel® Distribution of OpenVINO™ toolkit `__ - +* `GPU Driver issue troubleshoot ` diff --git a/src/plugins/intel_gpu/docs/gpu_plugin_driver_troubleshooting.md b/src/plugins/intel_gpu/docs/gpu_plugin_driver_troubleshooting.md index 7e0accf1d07f36..47f6a3b76ae5bb 100644 --- a/src/plugins/intel_gpu/docs/gpu_plugin_driver_troubleshooting.md +++ b/src/plugins/intel_gpu/docs/gpu_plugin_driver_troubleshooting.md @@ -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