Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docs: Update the doc on how to manually set operations affinity & fix some spelling errors #13203

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions docs/OV_Runtime_UG/hetero_execution.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ Following the OpenVINO™ naming convention, the Hetero execution plugin is assi
#### The Manual Mode
It assumes setting affinities explicitly for all operations in the model using `ov::Node::get_rt_info` with the `"affinity"` key.

If you assign specific operation to a specific device, make sure that the device actually supports the operation.
Randomly selecting operations and setting affinities may lead to decrease in model accuracy. To avoid that, try to set the related operations or subgraphs of this operation to the same affinity, such as the constant operation that will be folded into this operation.

@sphinxtabset

@sphinxtab{C++}
Expand Down
2 changes: 1 addition & 1 deletion docs/OV_Runtime_UG/supported_plugins/GPU.md
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ Alternatively, it can be enabled explicitly via the device notion, for example `

@endsphinxtab

@sphinxtab{Bacthing via throughput hint}
@sphinxtab{Batching via throughput hint}

@sphinxtabset

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ To request the current default context of the plugin, use one of the following m

@endsphinxtab

@sphinxtab{Bacthing via throughput hint}
@sphinxtab{Batching via throughput hint}

@snippet docs/snippets/gpu/remote_objects_creation.cpp default_context_from_model

Expand Down