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