disbaling WA with batch/=2 for excesive mem footptint, leaving only streams 2

This commit is contained in:
myshevts 2021-12-02 13:13:48 +03:00
parent b52768c2cc
commit 77529d802f

View File

@ -599,7 +599,7 @@ InferenceEngine::IExecutableNetworkInternal::Ptr AutoBatchInferencePlugin::LoadN
const size_t footprint = report_footprint(GetCore(), deviceName, "After BATCHED");
if (footprint > total_mem) { // WA for inaccurate footprint estimations
std::cout << "!!!! Total on-device mem is " << total_mem << " less than :" << footprint << std::endl;
throw NETWORK_NOT_LOADED;
// throw NETWORK_NOT_LOADED;
}
}
} catch (...) {