summaryrefslogtreecommitdiff
path: root/kernels/compiler_obwrite.cl
blob: 50e55a17eb24bfa886798a9d21d856d579106fcd (plain)
1
2
3
4
5
6
7
8
__kernel void
compiler_obwrite(__global uint *src, __global uint *dst)
{
  int id = (int)get_global_id(0);
  const int to =  src[id];
  __gen_ocl_obwrite(dst+id,to);
}