Lines Matching full:kernel
3 kernel __attribute__((vec_type_hint)) void kernel1() {} //expected-error{{'vec_type_hint' attribute…
5 kernel __attribute__((vec_type_hint(not_type))) void kernel2() {} //expected-error{{unknown type na…
7 kernel __attribute__((vec_type_hint(void))) void kernel3() {} //expected-error{{a non-vector or non…
9 kernel __attribute__((vec_type_hint(bool))) void kernel4() {} //expected-error{{a non-vector or non…
11 kernel __attribute__((vec_type_hint(int))) __attribute__((vec_type_hint(float))) void kernel5() {} …
13 kernel __attribute__((work_group_size_hint(8,16,32,4))) void kernel6() {} //expected-error{{'work_g…
15 kernel __attribute__((work_group_size_hint(1,2,3))) __attribute__((work_group_size_hint(3,2,1))) vo…
17 …(){} // expected-error {{attribute 'reqd_work_group_size' can only be applied to an OpenCL kernel}}
19 …(){} // expected-error {{attribute 'work_group_size_hint' can only be applied to an OpenCL kernel}}
21 …ernel10(){} // expected-error {{attribute 'vec_type_hint' can only be applied to an OpenCL kernel}}
29 void f_kernel_image2d_t( kernel image2d_t image ) { // expected-error {{'kernel' attribute only app…
33 kernel __attribute__((reqd_work_group_size(1,2,0))) void kernel11(){} // expected-error {{'reqd_wor…
34 kernel __attribute__((reqd_work_group_size(1,0,2))) void kernel12(){} // expected-error {{'reqd_wor…
35 kernel __attribute__((reqd_work_group_size(0,1,2))) void kernel13(){} // expected-error {{'reqd_wor…
37 …// expected-error {{attribute 'intel_reqd_sub_group_size' can only be applied to an OpenCL kernel}}
38 kernel __attribute__((intel_reqd_sub_group_size(0))) void kernel15(){} // expected-error {{'intel_r…
39 kernel __attribute__((intel_reqd_sub_group_size(8))) __attribute__((intel_reqd_sub_group_size(16)))…