Skip to content
This repository was archived by the owner on Mar 28, 2023. It is now read-only.

Commit c892239

Browse files
Fix another test
1 parent babf58b commit c892239

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

SYCL/SubGroup/attributes.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,8 +145,9 @@ int main() {
145145

146146
auto Kernel = TheKernel[0];
147147

148-
auto Res = Kernel.get_sub_group_info<
149-
cl::sycl::info::kernel_sub_group::compile_sub_group_size>(Device);
148+
auto Res = Kernel.get_info<
149+
cl::sycl::info::kernel_device_specific::compile_sub_group_size>(
150+
Device);
150151

151152
exit_if_not_equal<size_t>(Res, ReqdSize, "compile_sub_group_size");
152153
}

0 commit comments

Comments
 (0)