Fix spelling errors in samples and documentation (#2795)

* Fix spelling errors in samples

* Fix spelling errors in the documentation
This commit is contained in:
Roman Donchenko
2020-11-11 15:35:39 +03:00
committed by GitHub
parent 719187ca04
commit a428c469ce
35 changed files with 47 additions and 47 deletions

View File

@@ -84,7 +84,7 @@ void TemplatePlugin::ExecutableNetwork::InitExecutor() {
// and memory consumption can be larger than it is expected.
// So Inference Engone provides executors cache.
_taskExecutor = ExecutorManager::getInstance()->getIdleCPUStreamsExecutor(streamsExecutorConfig);
// NOTE: callback Executor is not configured. So callback will be called in the thread of tha last stage of inference request pipeline
// NOTE: callback Executor is not configured. So callback will be called in the thread of the last stage of inference request pipeline
// _callbackExecutor = ExecutorManager::getInstance()->getIdleCPUStreamsExecutor({"TemplateCallbackExecutor"});
}
// ! [executable_network:init_executor]