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 037a72d + 36f61f3 commit a5f0fb6Copy full SHA for a5f0fb6
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