Files
openvino/samples/cpp/hello_query_device/main.cpp

75 lines
2.4 KiB
C++
Raw Normal View History

// Copyright (C) 2018-2022 Intel Corporation
2019-08-09 19:02:42 +03:00
// SPDX-License-Identifier: Apache-2.0
//
#include <cstdlib>
2019-08-09 19:02:42 +03:00
#include <iomanip>
#include <memory>
#include <set>
2019-08-09 19:02:42 +03:00
#include <string>
#include <tuple>
#include <vector>
2019-08-09 19:02:42 +03:00
// clang-format off
#include "openvino/openvino.hpp"
#include "samples/common.hpp"
#include "samples/slog.hpp"
// clang-format on
2019-08-09 19:02:42 +03:00
/**
* @brief Print IE Parameters
* @param reference on IE Parameter
* @return void
*/
void print_any_value(const ov::Any& value) {
if (value.empty()) {
slog::info << "EMPTY VALUE" << slog::endl;
} else {
2019-08-09 19:02:42 +03:00
std::string stringValue = value.as<std::string>();
slog::info << (stringValue.empty() ? "\"\"" : stringValue) << slog::endl;
2019-08-09 19:02:42 +03:00
}
}
int main(int argc, char* argv[]) {
2019-08-09 19:02:42 +03:00
try {
// -------- Get OpenVINO runtime version --------
slog::info << ov::get_openvino_version() << slog::endl;
// -------- Parsing and validation of input arguments --------
2019-08-09 19:02:42 +03:00
if (argc != 1) {
std::cout << "Usage : " << argv[0] << std::endl;
2019-08-09 19:02:42 +03:00
return EXIT_FAILURE;
}
// -------- Step 1. Initialize OpenVINO Runtime Core --------
ov::Core core;
2019-08-09 19:02:42 +03:00
// -------- Step 2. Get list of available devices --------
std::vector<std::string> availableDevices = core.get_available_devices();
2019-08-09 19:02:42 +03:00
// -------- Step 3. Query and print supported metrics and config keys --------
slog::info << "Available devices: " << slog::endl;
for (auto&& device : availableDevices) {
slog::info << device << slog::endl;
2019-08-09 19:02:42 +03:00
// Query supported properties and print all of them
slog::info << "\tSUPPORTED_PROPERTIES: " << slog::endl;
auto supported_properties = core.get_property(device, ov::supported_properties);
for (auto&& property : supported_properties) {
if (property != ov::supported_properties.name()) {
slog::info << "\t\t" << (property.is_mutable() ? "Mutable: " : "Immutable: ") << property << " : "
<< slog::flush;
print_any_value(core.get_property(device, property));
}
2019-08-09 19:02:42 +03:00
}
slog::info << slog::endl;
2019-08-09 19:02:42 +03:00
}
} catch (const std::exception& ex) {
std::cerr << std::endl << "Exception occurred: " << ex.what() << std::endl << std::flush;
2019-08-09 19:02:42 +03:00
return EXIT_FAILURE;
}
2019-08-09 19:02:42 +03:00
return EXIT_SUCCESS;
}