Skip to content

Commit dcb6b7b

Browse files
authored
[SYCL] Fix post-commit failure after #18745 (#18797)
1 parent bfdfc3a commit dcb6b7b

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

sycl/unittests/Extensions/RootGroup.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,10 +84,9 @@ TEST(RootGroupTests, ValidNumWorkGroupsQuery) {
8484
// Set up a mock callback to return a specific group count when queried
8585
constexpr std::size_t mock_group_count = 42;
8686
mock::getCallbacks().set_replace_callback(
87-
"urKernelSuggestMaxCooperativeGroupCountExp", [](void *pParams) {
87+
"urKernelSuggestMaxCooperativeGroupCount", [](void *pParams) {
8888
auto params = static_cast<
89-
ur_kernel_suggest_max_cooperative_group_count_exp_params_t *>(
90-
pParams);
89+
ur_kernel_suggest_max_cooperative_group_count_params_t *>(pParams);
9190
**params->ppGroupCountRet = mock_group_count;
9291
return UR_RESULT_SUCCESS;
9392
});

0 commit comments

Comments
 (0)