Skip to content

Commit

Permalink
Corrections due to code review
Browse files Browse the repository at this point in the history
  • Loading branch information
shajder committed Mar 25, 2024
1 parent f91aafa commit fbf6ac0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ set(${MODULE_NAME}_SOURCES
mutable_command_global_offset.cpp
mutable_command_full_dispatch.cpp
mutable_command_multiple_dispatches.cpp
mutable_command_iterative_arg_update.cpp
mutable_command_iterative_arg_update.cpp
../basic_command_buffer.cpp
)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@
namespace {

////////////////////////////////////////////////////////////////////////////////
// command buffer with iterative update of mutable parameters test
// Test clUpdateMutableCommandsKHR() being called twice on the same command
// before an enqueue, but with different arguments. Verifies that the combined
// updates are made correctly.

struct IterativeArgUpdateDispatch : BasicMutableCommandBufferTest
{
Expand Down Expand Up @@ -70,7 +72,7 @@ struct IterativeArgUpdateDispatch : BasicMutableCommandBufferTest
test_error(error, "Failed to build program");

kernel = clCreateKernel(program, "fill", &error);
test_error(error, "Failed to create copy kernel");
test_error(error, "Failed to create fill kernel");

return CL_SUCCESS;
}
Expand Down

0 comments on commit fbf6ac0

Please sign in to comment.