Skip to content
This repository was archived by the owner on Mar 28, 2023. It is now read-only.

[SYCL] Fix batching barrier test to work with latest changes in L0 plugin #809

Merged
merged 1 commit into from
Feb 8, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions SYCL/Plugin/level_zero_batch_barrier.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,6 @@ void submit_kernel(queue &q) {
int main(int argc, char *argv[]) {
queue q;

submit_kernel(q); // this one will immediatelly execute since q is empty
// CHECK: ---> piEnqueueKernelLaunch
// CHECK: ZE ---> zeCommandQueueExecuteCommandLists

submit_kernel(q); // starts a batch
// CHECK: ---> piEnqueueKernelLaunch
// CHECK-NOT: ZE ---> zeCommandQueueExecuteCommandLists
Expand Down