1void copy(__global int b[1000], __global int a[1000], int pos, 2 __global int c[1000]) 3{ 4 b[pos] = a[pos]; 5} 6