13 KiB
Automatic device selection
@sphinxdirective
.. toctree:: :maxdepth: 1 :hidden:
Debugging Auto-Device Plugin <openvino_docs_IE_DG_supported_plugins_AUTO_debugging>
@endsphinxdirective
Auto Device (or AUTO in short) is a new special "virtual" or "proxy" device in the OpenVINO toolkit, it doesn’t bind to a specific type of HW device. AUTO solves the complexity in application required to code a logic for the HW device selection (through HW devices) and then, on the deducing the best optimization settings on that device. It does this by self-discovering all available accelerators & capabilities in the system, matching to the user’s performance requirements by respecting new “hints” configuration API to dynamically optimize for latency or throughput respectively. Developer can write application once and deploy anywhere.
For developer who want to limit inference on specific HW candidates, AUTO also provide device priority list as optional property. After developer set device priority list, AUTO will not discover all available accelerators in the system and only try device in list with priority order.
AUTO always choose the best device, if compiling model fails on this device, AUTO will try to compile it on next best device until one of them succeeds. If priority list is set, AUTO only select devices according to the list.
The best device is chosen using the following logic:
- Check which supported devices are available.
- Check the precision of the input model (for detailed information on precisions read more on the
ov::device::capabilities) - Select the first device capable of supporting the given precision, as presented in the table below.
- If the model’s precision is FP32 but there is no device capable of supporting it, offload the model to a device supporting FP16.
+----------+------------------------------------------------------+-------------------------------------+ | Choice || Supported || Supported | | Priority || Device || model precision | +==========+======================================================+=====================================+ | 1 || dGPU || FP32, FP16, INT8, BIN | | || (e.g. Intel® Iris® Xe MAX) || | +----------+------------------------------------------------------+-------------------------------------+ | 2 || iGPU || FP32, FP16, BIN | | || (e.g. Intel® UHD Graphics 620 (iGPU)) || | +----------+------------------------------------------------------+-------------------------------------+ | 3 || Intel® Movidius™ Myriad™ X VPU || FP16 | | || (e.g. Intel® Neural Compute Stick 2 (Intel® NCS2)) || | +----------+------------------------------------------------------+-------------------------------------+ | 4 || Intel® CPU || FP32, FP16, INT8, BIN | | || (e.g. Intel® Core™ i7-1165G7) || | +----------+------------------------------------------------------+-------------------------------------+
What is important, AUTO starts inference with the CPU by default except the priority list is set and there is no CPU in it. CPU provides very low latency and can start inference with no additional delays. While it performs inference, the Auto-Device plugin continues to load the model to the device best suited for the purpose and transfers the task to it when ready. This way, the devices which are much slower in compile the model, GPU being the best example, do not impede inference at its initial stages.
This mechanism can be easily observed in our Benchmark Application sample ([see here](#Benchmark App Info)), showing how the first-inference latency (the time it takes to compile the model and perform the first inference) is reduced when using AUTO. For example:
@sphinxdirective .. code-block:: sh
./benchmark_app -m ../public/alexnet/FP32/alexnet.xml -d GPU -niter 128 @endsphinxdirective
@sphinxdirective .. code-block:: sh
./benchmark_app -m ../public/alexnet/FP32/alexnet.xml -d AUTO -niter 128 @endsphinxdirective
Assume there are CPU and GPU on the machine, first-inference latency of "AUTO" will be better than "GPU".
@sphinxdirective .. note:: The realtime performance will be closer to the best suited device the longer the process runs. @endsphinxdirective
Using the Auto-Device Plugin
Inference with AUTO is configured similarly to other plugins: compile the model on the plugin whth configuration, and finally, execute inference.
Following the OpenVINO™ naming convention, the Auto-Device plugin is assigned the label of “AUTO.” It may be defined with no additional parameters, resulting in defaults being used, or configured further with the following setup options:
@sphinxdirective +---------------------------+-----------------------------------------------+-----------------------------------------------------------+ | Property | Property values | Description | +===========================+===============================================+===========================================================+ | | | AUTO: | | Lists the devices available for selection. | | | | comma-separated, no spaces | | The device sequence will be taken as priority | | | | | | from high to low. | | | | | | If not specified, “AUTO” will be used as default | | | | | | and all devices will be included. | +---------------------------+-----------------------------------------------+-----------------------------------------------------------+ | ov::device:priorities | | device names | | Specifies the devices for Auto-Device plugin to select. | | | | comma-separated, no spaces | | The device sequence will be taken as priority | | | | | | from high to low. | | | | | | This configuration is optional. | +---------------------------+-----------------------------------------------+-----------------------------------------------------------+ | ov::hint::performance_mode| | ov::hint::PerformanceMode::LATENCY | | Specifies the performance mode preferred | | | | ov::hint::PerformanceMode::THROUGHPUT | | by the application. | +---------------------------+-----------------------------------------------+-----------------------------------------------------------+ | ov::hint::model_priority | | ov::hint::Priority::HIGH | | Indicates the priority for a model. | | | | ov::hint::Priority::MEDIUM | | Importantly! | | | | ov::hint::Priority::LOW | | This property is still not fully supported | +---------------------------+-----------------------------------------------+-----------------------------------------------------------+ @endsphinxdirective
Device candidate list
The device candidate list allows users to customize the priority and limit the choice of devices available to the AUTO plugin. If not specified, the plugin assumes all the devices present in the system can be used. Note, that OpenVINO™ Runtime lets you use “GPU” as an alias for “GPU.0” in function calls. The following commands are accepted by the API:
@sphinxdirective
.. tab:: C++
.. doxygensnippet:: docs/snippets/AUTO0.cpp
:language: cpp
:fragment: [part0]
.. tab:: Python
.. doxygensnippet:: docs/snippets/ov_auto.py
:language: python
:fragment: [part0]
@endsphinxdirective
To check what devices are present in the system, you can use Device API. For information on how to do it, check Query device properties and configuration
For C++ @sphinxdirective .. code-block:: sh
ov::runtime::Core::get_available_devices() (see Hello Query Device C++ Sample) @endsphinxdirective
For Python @sphinxdirective .. code-block:: sh
openvino.runtime.Core.available_devices (see Hello Query Device Python Sample) @endsphinxdirective
Performance Hints
The ov::hint::performance_mode property enables you to specify a performance mode for the plugin to be more efficient for particular use cases.
ov::hint::PerformanceMode::THROUGHPUT
This mode prioritizes high throughput, balancing between latency and power. It is best suited for tasks involving multiple jobs, like inference of video feeds or large numbers of images.
ov::hint::PerformanceMode::LATENCY
This mode prioritizes low latency, providing short response time for each inference job. It performs best for tasks where inference is required for a single input image, like a medical analysis of an ultrasound scan image. It also fits the tasks of real-time or nearly real-time applications, such as an industrial robot's response to actions in its environment or obstacle avoidance for autonomous vehicles.
Note that currently the ov::hint property is supported by CPU and GPU devices only.
To enable performance hints for your application, use the following code: @sphinxdirective
.. tab:: C++
.. doxygensnippet:: docs/snippets/AUTO3.cpp
:language: cpp
:fragment: [part3]
.. tab:: Python
.. doxygensnippet:: docs/snippets/ov_auto.py
:language: python
:fragment: [part3]
@endsphinxdirective
ov::hint::model_priority
The property enables you to control the priorities of models in the Auto-Device plugin. A high-priority model will be loaded to a supported high-priority device. A lower-priority model will not be loaded to a device that is occupied by a higher-priority model.
@sphinxdirective
.. tab:: C++
.. doxygensnippet:: docs/snippets/AUTO4.cpp
:language: cpp
:fragment: [part4]
.. tab:: Python
.. doxygensnippet:: docs/snippets/ov_auto.py
:language: python
:fragment: [part4]
@endsphinxdirective
Configuring Individual Devices and Creating the Auto-Device plugin on Top
Although the methods described above are currently the preferred way to execute inference with AUTO, the following steps can be also used as an alternative. It is currently available as a legacy feature and used if the device candidate list includes Myriad (devices uncapable of utilizing the Performance Hints option).
@sphinxdirective
.. tab:: C++
.. doxygensnippet:: docs/snippets/AUTO5.cpp
:language: cpp
:fragment: [part5]
.. tab:: Python
.. doxygensnippet:: docs/snippets/ov_auto.py
:language: python
:fragment: [part5]
@endsphinxdirective
Using AUTO with OpenVINO™ Samples and the Benchmark App
To see how the Auto-Device plugin is used in practice and test its performance, take a look at OpenVINO™ samples. All samples supporting the "-d" command-line option (which stands for "device") will accept the plugin out-of-the-box. The Benchmark Application will be a perfect place to start – it presents the optimal performance of the plugin without the need for additional settings, like the number of requests or CPU threads. To evaluate the AUTO performance, you can use the following commands:
For unlimited device choice: @sphinxdirective .. code-block:: sh
benchmark_app –d AUTO –m -i -niter 1000 @endsphinxdirective
For limited device choice: @sphinxdirective .. code-block:: sh
benchmark_app –d AUTO:CPU,GPU,MYRIAD –m -i -niter 1000 @endsphinxdirective
For more information, refer to the C++ or Python version instructions.
@sphinxdirective .. note::
The default CPU stream is 1 if using “-d AUTO”.
You can use the FP16 IR to work with auto-device.
No demos are yet fully optimized for AUTO, by means of selecting the most suitable device, using the GPU streams/throttling, and so on. @endsphinxdirective
