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