We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5108e3c + 7fe87d9 commit 41548a0Copy full SHA for 41548a0
modules/dnn/src/ie_ngraph.cpp
@@ -684,7 +684,11 @@ void InfEngineNgraphNet::initPlugin(InferenceEngine::CNNNetwork& net)
684
}
685
std::map<std::string, std::string> config;
686
if (device_name == "MYRIAD") {
687
+#if INF_ENGINE_VER_MAJOR_GT(INF_ENGINE_RELEASE_2020_4)
688
+ config.emplace("MYRIAD_DETECT_NETWORK_BATCH", CONFIG_VALUE(NO));
689
+#else
690
config.emplace("VPU_DETECT_NETWORK_BATCH", CONFIG_VALUE(NO));
691
+#endif
692
693
694
bool isHetero = device_name == "FPGA";
0 commit comments