You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// This tests that a warning is returned when a sub group size other than 32 is
4
4
// requested in the CUDA backend via the reqd_sub_group_size() kernel attribute.
@@ -9,11 +9,11 @@ int main() {
9
9
sycl::queue Q;
10
10
11
11
Q.submit([&](sycl::handler &h) {
12
-
h.single_task<classinvalid_kernel>([=] [[intel::reqd_sub_group_size(8)]] {}); // expected-warning {{attribute argument 8 is invalid and will be ignored; nvptx requires sub_group size 32}}
12
+
h.single_task<classinvalid_kernel>([=] [[sycl::reqd_sub_group_size(8)]] {}); // expected-warning {{attribute argument 8 is invalid and will be ignored; nvptx requires sub_group size 32}}
0 commit comments