From 28e5d28925b638bfa49bfec197fde26d20a4df42 Mon Sep 17 00:00:00 2001 From: "Voron, Aleksandr" Date: Tue, 11 Aug 2026 15:05:32 +0200 Subject: [PATCH 1/2] upd --- .../inference-devices-and-modes/gpu-device.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/articles_en/openvino-workflow/running-inference/inference-devices-and-modes/gpu-device.rst b/docs/articles_en/openvino-workflow/running-inference/inference-devices-and-modes/gpu-device.rst index ea1ea49d3d73a8..ebb25757511867 100644 --- a/docs/articles_en/openvino-workflow/running-inference/inference-devices-and-modes/gpu-device.rst +++ b/docs/articles_en/openvino-workflow/running-inference/inference-devices-and-modes/gpu-device.rst @@ -26,11 +26,11 @@ The GPU plugin is a part of the Intel® Distribution of OpenVINO™ toolkit. For Device Naming Convention ####################################### -* Devices are enumerated as ``GPU.X``, where ``X={0, 1, 2,...}`` (only Intel® GPU devices are considered). -* If the system has an integrated GPU, its ``id`` is always 0 (``GPU.0``). -* The order of other GPUs is not predefined and depends on the GPU driver. +* Devices are enumerated as ``GPU.X``, where ``X={0, 1, 2,...}``. +* If the system has an integrated Intel® GPU, its ``id`` is always 0 (``GPU.0``). +* If the system does not have an integrated Intel® GPU, devices are enumerated, starting from 0. +* The order of GPUs is predefined: an integrated Intel® GPU is enumerated first, followed by discrete Intel® GPUs. The order of non-Intel® GPUs is not guaranteed. * The ``GPU`` is an alias for ``GPU.0``. -* If the system does not have an integrated GPU, devices are enumerated, starting from 0. * For GPUs with multi-tile architecture (multiple sub-devices in OpenCL terms), a specific tile may be addressed as ``GPU.X.Y``, where ``X,Y={0, 1, 2,...}``, ``X`` - id of the GPU device, ``Y`` - id of the tile within device ``X`` For demonstration purposes, see the :doc:`Hello Query Device C++ Sample <../../../get-started/learn-openvino/openvino-samples/hello-query-device>` that can print out the list of available devices with associated indices. Below is an example output (truncated to the device names only): From d8e163a369096157e7f96c4cff9f052cdfc00c71 Mon Sep 17 00:00:00 2001 From: "Voron, Aleksandr" Date: Tue, 11 Aug 2026 15:10:16 +0200 Subject: [PATCH 2/2] upd2 --- .../inference-devices-and-modes/gpu-device.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/articles_en/openvino-workflow/running-inference/inference-devices-and-modes/gpu-device.rst b/docs/articles_en/openvino-workflow/running-inference/inference-devices-and-modes/gpu-device.rst index ebb25757511867..d91af7d83293a8 100644 --- a/docs/articles_en/openvino-workflow/running-inference/inference-devices-and-modes/gpu-device.rst +++ b/docs/articles_en/openvino-workflow/running-inference/inference-devices-and-modes/gpu-device.rst @@ -26,7 +26,7 @@ The GPU plugin is a part of the Intel® Distribution of OpenVINO™ toolkit. For Device Naming Convention ####################################### -* Devices are enumerated as ``GPU.X``, where ``X={0, 1, 2,...}``. +* Devices are enumerated as ``GPU.X``, where ``X={0, 1, 2,...}`` (both Intel® and non-Intel GPUs are considered). * If the system has an integrated Intel® GPU, its ``id`` is always 0 (``GPU.0``). * If the system does not have an integrated Intel® GPU, devices are enumerated, starting from 0. * The order of GPUs is predefined: an integrated Intel® GPU is enumerated first, followed by discrete Intel® GPUs. The order of non-Intel® GPUs is not guaranteed.