summaryrefslogtreecommitdiff
path: root/kernels/compiler_uint2_copy.cl
blob: 7c5c5e35e225b25c4e541b1dda215ea920d26e7e (plain)
1
2
3
4
5
6
7
__kernel void
compiler_uint2_copy(__global uint2 *src, __global uint2 *dst)
{
  int id = (int)get_global_id(0);
  dst[id] = src[id];
}