Removed ov::runtime namespace (#9781)

* Removed ov::runtime namespace

* clang-format

* Fixes

* template reference

* Fixes
This commit is contained in:
Ilya Lavrenov
2022-01-20 16:17:57 +03:00
committed by GitHub
parent 29c3b8e201
commit 8f3d030d79
362 changed files with 4231 additions and 4262 deletions
+1 -1
View File
@@ -6,7 +6,7 @@ Hello Query Device C++ sample application demonstrates how to use the following
| Feature | API | Description |
|:--- |:--- |:---
|Available Devices|`ov::runtime::Core::get_available_devices`, `ov::runtime::Core::get_metric`, `ov::runtime::Core::get_config`| Get available devices information and configuration for inference
|Available Devices|`ov::Core::get_available_devices`, `ov::Core::get_metric`, `ov::Core::get_config`| Get available devices information and configuration for inference
Basic Inference Engine API is covered by [Hello Classification C++ sample](../hello_classification/README.md).
+1 -1
View File
@@ -95,7 +95,7 @@ int main(int argc, char* argv[]) {
}
// -------- Step 1. Initialize OpenVINO Runtime Core --------
ov::runtime::Core core;
ov::Core core;
// -------- Step 2. Get list of available devices --------
std::vector<std::string> availableDevices = core.get_available_devices();