Skip to content

Commit

Permalink
Correction related to code review
Browse files Browse the repository at this point in the history
  • Loading branch information
shajder committed Jan 23, 2025
1 parent 9bf257a commit 201c002
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test_conformance/api/test_queue.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,8 @@ REGISTER_TEST(multi_queue_flush_on_release)
err = clReleaseCommandQueue(queue_A);
test_error(err, "clReleaseCommandQueue failed");

err = clFinish(queue_B);
test_error(err, "clFinish failed");
err = clFlush(queue_B);
test_error(err, "clFlush failed");

// Wait for kernel to execute since the queue must flush on release
bool success = poll_until(2000, 50, [&event_B]() {
Expand Down

0 comments on commit 201c002

Please sign in to comment.