increasing the timeout to test the ssd_* models perf (timeout?) issues

This commit is contained in:
myshevts 2021-10-27 16:08:15 +03:00
parent 69160fd282
commit 0c1efd8e7a

View File

@ -288,7 +288,7 @@ InferenceEngine::IInferRequestInternal::Ptr AutoBatchExecutableNetwork::CreateIn
workerRequestPtr->_thread = std::thread([workerRequestPtr, this] {
while (1) {
std::unique_lock<std::mutex> lock(workerRequestPtr->_mutex);
auto status = workerRequestPtr->_cond.wait_for(lock, std::chrono::milliseconds(100));
auto status = workerRequestPtr->_cond.wait_for(lock, std::chrono::milliseconds(1000));
// as we pop the tasks from the queue only here
// it is ok to call unsafe_size (as the _tasks can only grow in parallel)
const int sz = workerRequestPtr->_tasks.unsafe_size();