2021-06-01 16:31:29 +03:00
|
|
|
#include <ie_core.hpp>
|
2020-09-22 18:01:48 +03:00
|
|
|
|
|
|
|
|
int main() {
|
|
|
|
|
using namespace InferenceEngine;
|
|
|
|
|
//! [part0]
|
|
|
|
|
InferenceEngine::Core core;
|
|
|
|
|
std::vector<std::string> availableDevices = core.GetAvailableDevices();
|
|
|
|
|
//! [part0]
|
|
|
|
|
return 0;
|
|
|
|
|
}
|