Fixed the circular refernece between CPUStreamsExecutor and ExecuterManager#33615
Merged
mlukasze merged 1 commit intoopenvinotoolkit:masterfrom Jan 21, 2026
Merged
Fixed the circular refernece between CPUStreamsExecutor and ExecuterManager#33615mlukasze merged 1 commit intoopenvinotoolkit:masterfrom
mlukasze merged 1 commit intoopenvinotoolkit:masterfrom
Conversation
praasz
approved these changes
Jan 15, 2026
c7c1821 to
b70c355
Compare
Contributor
Author
|
build_jenkins |
b70c355 to
28ddd0d
Compare
Contributor
Author
|
build_jenkins |
542ae70 to
ccbe721
Compare
ccbe721 to
6ee99f5
Compare
Contributor
Author
|
build_jenkins |
2 similar comments
Contributor
Author
|
build_jenkins |
Contributor
Author
|
build_jenkins |
Merged
via the queue into
openvinotoolkit:master
with commit Jan 21, 2026
58e66e8
310 of 350 checks passed
Naseer-010
pushed a commit
to Naseer-010/openvino
that referenced
this pull request
Feb 18, 2026
…anager (openvinotoolkit#33615) ### Details: <img width="1178" height="572" alt="image" src="https://github.com/user-attachments/assets/706377a9-6a53-43d9-8341-675ef8d0df3d" /> The `CPUStreamsExecutor `: ``` explicit Impl(const Config& config) : _config{config}, _streams( [this] { return std::make_shared<Impl::Stream>(this); }, this) { _exectorMgr = executor_manager(); ``` The `ExecutorManagerImpl`: ``` std::shared_ptr<ov::threading::ITaskExecutor> ExecutorManagerImpl::get_executor(const std::string& id) { std::lock_guard<std::mutex> guard(taskExecutorMutex); auto foundEntry = executors.find(id); if (foundEntry == executors.end()) { auto newExec = std::make_shared<ov::threading::CPUStreamsExecutor>(ov::threading::IStreamsExecutor::Config{id}); tbbThreadsCreated = true; executors[id] = newExec; return newExec; } return foundEntry->second; } ``` ### Tickets: - [CVS-179009](https://jira.devtools.intel.com/browse/CVS-179009)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Details:
The
CPUStreamsExecutor:The
ExecutorManagerImpl:Tickets: