__kernel void memcpy(__global int * dst, __global int * src, int items) { for (int i = 0; i < items; i++) { dst[i] = src[i]; } }