-
Notifications
You must be signed in to change notification settings - Fork 116
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
Candidate for the v0.8.7 release tag #1329
Conversation
aarongreig
commented
Feb 9, 2024
•
edited
Loading
edited
- [L0] move platform cache into the adapter structure #1252
- [L0] move adapter init into its constructor from urAdapterGet #1321
- [L0] Allocate event pools efficiently in multi-device scenarios #1324
- Update CMake version
[L0] move platform cache into the adapter structure
…ructor [L0] move adapter init into its constructor from urAdapterGet
9e448cf
to
3921683
Compare
cf8c9bc
to
b41e7fc
Compare
[L0] Allocate event pools efficiently in multi-device scenarios
40cf72f
to
8269548
Compare
8269548
to
3aeccac
Compare
@oneapi-src/unified-runtime-level-zero-write @oneapi-src/unified-runtime-command-buffer-write please review |
UR_CALL(Queue->Context->getAvailableCommandList(Queue, SignalCommandList, | ||
false, false)); | ||
|
||
UR_CALL(createEventAndAssociateQueue(Queue, &RetEvent, | ||
UR_COMMAND_COMMAND_BUFFER_ENQUEUE_EXP, | ||
SignalCommandList, false)); | ||
UR_CALL(createEventAndAssociateQueue( | ||
Queue, &RetEvent, UR_COMMAND_COMMAND_BUFFER_ENQUEUE_EXP, | ||
SignalCommandList, false, false, true)); |
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.
Merge conflict was resolved incorrectly here. getAvailableCommandList should have been left as is. Only createEventAndAssociateQueue should have been changed accordingly.
Please see againull@f9ac087#diff-ab021f9451ccb6dd66e3df853d0e123b2f898233a1f609b1e698bef4f6011c71R762-R767
for the reference.
graph tests are failing because of this.