DNN: try to fix the sporadic crashes in perf_dnn#23511
Merged
opencv-pushbot merged 1 commit intoopencv:4.xfrom Apr 22, 2023
Merged
DNN: try to fix the sporadic crashes in perf_dnn#23511opencv-pushbot merged 1 commit intoopencv:4.xfrom
opencv-pushbot merged 1 commit intoopencv:4.xfrom
Conversation
vpisarev
approved these changes
Apr 19, 2023
Contributor
|
The issue is still there. See buildbot: |
a8ae90b to
f60d9a0
Compare
Member
Author
|
Hi @asmorkalov, I have added a compute branch for the |
Contributor
|
@zihaomu Please take a look on valgrind reports - valgrind points on some problem places in dnn: https://pullrequest.opencv.org/buildbot/builders/4_x_valgrind-lin64-debug |
Member
Author
|
Update: I found there is a bug at Hi @opencv-alalek and @asmorkalov, thanks for your reminder, I will generate a test case in accuracy test to check this issue carefully. |
Member
Author
|
Hi, @opencv-alalek, looks there is issue in built-bot CI. |
opencv-alalek
approved these changes
Apr 22, 2023
| } | ||
|
|
||
| int MAX_STRIPES = (56 + CONV_NR - 1)/CONV_NR; | ||
| int MAX_STRIPES = conv->conv_type == CONV_TYPE_DEPTHWISE_REMAIN ? 1 : (56 + CONV_NR - 1)/CONV_NR; |
Contributor
There was a problem hiding this comment.
(56 + CONV_NR - 1)/CONV_NR
BTW, there is divUp() call for that
6 tasks
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.
Address #23465
Merge with test: opencv/opencv_extra#1058
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.