Skip to content

Commit

Permalink
Fix review comments.
Browse files Browse the repository at this point in the history
Signed-off-by: Paweł Jastrzębski <p.k.jastrzebski@gmail.com>
  • Loading branch information
pj87 committed Jul 4, 2023
1 parent a82e3a0 commit 5e485af
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ struct MutableDispatchLocalArguments : public BasicMutableCommandBufferTest
/* Set the arguments */
error = clSetKernelArg(kernel, 0, sizeof(cl_mem), &streams[0]);
test_error(error, "Unable to set indexed kernel arguments");
error = clSetKernelArg(kernel, 1, numberOfInts, nullptr);
error = clSetKernelArg(kernel, 1, numberOfInts * sizeof(cl_int), nullptr);
test_error(error, "Unable to set indexed kernel arguments");
error = clSetKernelArg(kernel, 2, sizeof(cl_mem), &streams[1]);
test_error(error, "Unable to set indexed kernel arguments");
Expand Down

0 comments on commit 5e485af

Please sign in to comment.