-
Notifications
You must be signed in to change notification settings - Fork 753
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
[SYCL] Extend scope of scheduler bypass to safe to bypass events #16735
base: sycl
Are you sure you want to change the base?
[SYCL] Extend scope of scheduler bypass to safe to bypass events #16735
Conversation
Alexandr-Konovalov
commented
Jan 22, 2025
- Aling scheduler bypass conditions for CG and for memory ops.
- Connect an event returned from scheduler bypass case with dependent events.
1) Aling scheduler bypass conditions for CG and for memory ops. 2) Connect an event returned from scheduler bypass case with dependent events.
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.
The change LGTM, just minor nitpicks
@@ -332,6 +332,9 @@ TEST_F(DependsOnTests, ShortcutFunctionWithWaitList) { | |||
ASSERT_NE(Cmd, nullptr); | |||
Cmd->MIsBlockable = true; | |||
Cmd->MEnqueueStatus = detail::EnqueueResultT::SyclEnqueueBlocked; | |||
// for the test functionality, depenent task HostTaskEvent must be treated as |
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.
I would replace this comment with "Mock up an incomplete host task" on L326.
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.
Done.
Co-authored-by: Sergey Semenov <[email protected]>