Fix THREADING=SEQ build failure on Windows (#8699)

This commit is contained in:
FanJiangIntel 2021-11-22 17:54:32 +08:00 committed by GitHub
parent c37521d097
commit de639899a6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,6 +11,7 @@
#include "ie_parallel.hpp"
#include "threading/ie_istreams_executor.hpp"
#if ((IE_THREAD == IE_THREAD_TBB) || (IE_THREAD == IE_THREAD_TBB_AUTO))
namespace InferenceEngine {
/**
* @class TBBStreamsExecutor
@ -31,3 +32,4 @@ private:
std::unique_ptr<Impl> _impl;
};
} // namespace InferenceEngine
#endif