G-API: Fix infer hanging#19971
Merged
opencv-pushbot merged 1 commit intoopencv:masterfrom Apr 27, 2021
Merged
Conversation
TolyaTalamanov
commented
Apr 24, 2021
| // NB: It will be blocked if at least one request is busy. | ||
| for (size_t i = 0; i < m_requests.size(); ++i) { | ||
| size_t id = 0u; | ||
| m_idle_ids.pop(id); |
Contributor
Author
There was a problem hiding this comment.
Need to fill queue again to use it in next infer calls
Contributor
Author
dmatveev
approved these changes
Apr 27, 2021
Contributor
dmatveev
left a comment
There was a problem hiding this comment.
Got the idea but please write a meaningful root case / fix description
Contributor
Author
|
@alalek Can it be merged ? |
Merged
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.
Pull Request Readiness Checklist
See details at https://github.com/opencv/opencv/wiki/How_to_contribute#making-a-good-pull-request
Patch to opencv_extra has the same branch name.
Description
Infer kernels in
IEbackend works asynchronously and implemented viaRequestPoolwhich has a set ofInferRequest's and concurrent bounded queue to track free requests.Before run the task
RequestPoolpop first free request and if there are no free requests it blocks. (*)When execution is finished (all frames are processed or at least started processing) need to wait for all requests are free.
There is some trick: try to pop all requests from queue, if specific request is busy it blocks until it's free. When it finishes guarantee all requests are free, but the queue of free requests is empty.
Build configuration