-
Notifications
You must be signed in to change notification settings - Fork 113
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
rocr: Add WaitMultiple to core Signal #250
Conversation
8ca5f41
to
f082e76
Compare
f082e76
to
946a5d7
Compare
Any comments on this, @dayatsin-amd? |
Looks good. Sorry for late response. Thank you for patch! |
ca84f25
to
ec45775
Compare
3fe9f13
to
39f4337
Compare
Can you re-review @dayatsin-amd when you get a chance? Some of the Async signal logic changed which requires additional changes to this PR that I'd like you to look at. |
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.
Some minor changes needed to avoid breaking rocprofiler function parsers.
39f4337
to
71fb283
Compare
ea66d58
to
9971e7b
Compare
!verify full |
1 similar comment
!verify full |
Replaces WaitAny with WaitMultiple to more closely align with the underlying driver API for waiting on multiple events. WaitMultiple adds a single parameter, wait_on_all, to the WaitAny interface providing a single function for waiting on multiple events when we only need AND and OR semantics for the signal checking logic.
71fb283
to
0faaa5e
Compare
All comments regarding versioning should be fixed now. |
!verify full |
1 similar comment
!verify full |
Submitted to amd-staging |
Replaces WaitAny with WaitMultiple to more closely align with the underlying driver API for waiting on multiple events.
WaitMultiple adds a single parameter, wait_on_all, to the WaitAny interface providing a single function for waiting on multiple events when we only need AND and OR semantics for the signal checking logic.