SWDEV-422207 - Capture AQL Packets for graph Kernel nodes during graph Inst. And enqueue AQL packet during launch

Change-Id: I1e5f7f9e2a70bd500d190193cb6ba0867f5a63e7
This commit is contained in:
Anusha GodavarthySurya
2023-07-19 10:10:37 +00:00
committed by Anusha Godavarthy Surya
parent 3eb46ae588
commit e63c280d4d
10 changed files with 237 additions and 174 deletions
+1 -2
View File
@@ -317,7 +317,6 @@ Command::Command(HostQueue& queue, cl_command_type type, const EventWaitList& ev
type_(type),
data_(nullptr),
waitingEvent_(waitingEvent),
buffering_(false),
eventWaitList_(eventWaitList),
commandWaitBits_(commandWaitBits) {
// Retain the commands from the event wait list.
@@ -354,7 +353,7 @@ void Command::enqueue() {
// Notify all commands about the waiter. Barrier will be sent in order to obtain
// HSA signal for a wait on the current queue
for (const auto &event: eventWaitList()) {
for (const auto& event : eventWaitList()) {
event->notifyCmdQueue(!kCpuWait);
}