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