From f5d9e1d050d47f2004d25afe0c0841bcd73dc8b2 Mon Sep 17 00:00:00 2001 From: Yuan Xu Date: Mon, 6 Jun 2022 21:56:17 +0800 Subject: [PATCH] Fix a heading in Auto (#11743) * fix the heading * fix headings --- docs/OV_Runtime_UG/auto_device_selection.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/docs/OV_Runtime_UG/auto_device_selection.md b/docs/OV_Runtime_UG/auto_device_selection.md index fb0ed666163..b1db1ba85ff 100644 --- a/docs/OV_Runtime_UG/auto_device_selection.md +++ b/docs/OV_Runtime_UG/auto_device_selection.md @@ -141,10 +141,10 @@ openvino.runtime.Core.available_devices (see Hello Query Device Python Sample) ### 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 +#### THROUGHPUT Mode 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 +#### LATENCY Mode 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. @@ -165,8 +165,9 @@ To enable performance hints for your application, use the following code: @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. +### Model Priority + +The `ov::hint::model_priority` 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