Skip to content

Commit

Permalink
kernel_clock: Update function names to match spec
Browse files Browse the repository at this point in the history
  • Loading branch information
lakshmih committed May 28, 2024
1 parent 6807e16 commit c070d35
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -96,13 +96,13 @@ class KernelClockTest {
break;
}
case CL_DEVICE_KERNEL_CLOCK_SCOPE_WORK_GROUP_KHR: {
sprintf(kernel_src, kernel_sources[i], "workgroup",
"workgroup");
sprintf(kernel_src, kernel_sources[i], "work_group",
"work_group");
break;
}
case CL_DEVICE_KERNEL_CLOCK_SCOPE_SUB_GROUP_KHR: {
sprintf(kernel_src, kernel_sources[i], "subgroup",
"subgroup");
sprintf(kernel_src, kernel_sources[i], "sub_group",
"sub_group");
break;
}
}
Expand Down

0 comments on commit c070d35

Please sign in to comment.