You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
191 B

__kernel void min_kern(
global char* in,
global char* map,
global int3 map_dim)
{
int a = 10;
size_t id = get_global_id(0);
printf("%c%i\n", in[id], id);
}