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