Skip to content

Commit

Permalink
fix negative_command_buffer_enqueue_with_different_context
Browse files Browse the repository at this point in the history
negative_command_buffer_enqueue_with_different_context does not need
to use CL_QUEUE_OUT_OF_ORDER_EXEC_MODE_ENABLE

Fix KhronosGroup#2205
  • Loading branch information
rjodinchr committed Dec 26, 2024
1 parent 2ea4d16 commit ead4557
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -395,8 +395,8 @@ struct EnqueueCommandBufferQueueWithDifferentContext
clCreateContext(0, 1, &device, nullptr, nullptr, &error);
test_error(error, "Failed to create context");

queue_different_context = clCreateCommandQueue(
context1, device, CL_QUEUE_OUT_OF_ORDER_EXEC_MODE_ENABLE, &error);
queue_different_context =
clCreateCommandQueue(context1, device, 0, &error);
test_error(error, "clCreateCommandQueue failed");

return CL_SUCCESS;
Expand Down

0 comments on commit ead4557

Please sign in to comment.