Commit d1387b25 authored by Alexander Alekhin's avatar Alexander Alekhin

Merge pull request #14318 from dkurt:fix_ie_github

parents 169dc9c3 92cbec6f
...@@ -12,9 +12,6 @@ ...@@ -12,9 +12,6 @@
#ifdef HAVE_INF_ENGINE #ifdef HAVE_INF_ENGINE
#include <ie_extension.h> #include <ie_extension.h>
#include <ie_plugin_dispatcher.hpp> #include <ie_plugin_dispatcher.hpp>
#if INF_ENGINE_VER_MAJOR_GE(INF_ENGINE_RELEASE_2018R5)
#include <vpu/vpu_plugin_config.hpp>
#endif
#endif // HAVE_INF_ENGINE #endif // HAVE_INF_ENGINE
#include <opencv2/core/utils/configuration.private.hpp> #include <opencv2/core/utils/configuration.private.hpp>
...@@ -737,8 +734,7 @@ static bool detectMyriadX_() ...@@ -737,8 +734,7 @@ static bool detectMyriadX_()
auto plugin = InferenceEngine::InferencePlugin(enginePtr); auto plugin = InferenceEngine::InferencePlugin(enginePtr);
try try
{ {
auto netExec = plugin.LoadNetwork(cnn, {{InferenceEngine::VPUConfigParams::KEY_VPU_PLATFORM, auto netExec = plugin.LoadNetwork(cnn, {{"VPU_PLATFORM", "VPU_2480"}});
InferenceEngine::VPUConfigParams::VPU_2480}});
auto infRequest = netExec.CreateInferRequest(); auto infRequest = netExec.CreateInferRequest();
} catch(...) { } catch(...) {
return false; return false;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment