-
-
Notifications
You must be signed in to change notification settings - Fork 56.3k
DNN: try to fix the sporadic crashes in perf_dnn #23511
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
The issue is still there. See buildbot:
|
a8ae90b
to
f60d9a0
Compare
Hi @asmorkalov, I have added a compute branch for the |
@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 |
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. |
Hi, @opencv-alalek, looks there is issue in built-bot CI. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍 Thanks!
} | ||
|
||
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; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(56 + CONV_NR - 1)/CONV_NR
BTW, there is divUp()
call for that
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.