summaryrefslogtreecommitdiff
path: root/kernels/compiler_gather_register_file.cl
blob: 773797d094b0a7b421ff781b2eb1b9e156c0a42b (plain)
1
2
3
4
5
6
7
8
9
10
__kernel void
compiler_gather_register_file(__global uint *src, __global uint *dst)
{
  __gen_ocl_force_simd16();
  int id = (int)get_global_id(0);
  const int x0 = src[id];
  const unsigned short index = get_global_id(0);
  dst[id] = __gen_ocl_rgather(index, x0);
}