1/* OpenCL kernel for testing purposes. */ 2__kernel void testkernel (__global int *data) 3{ 4 data[get_global_id(0)] = 0x1; 5} 6