summaryrefslogtreecommitdiff
path: root/kernels/compiler_function_constant0.cl
blob: 53403525ffaee8036ace6b7bf1d7fca4ee56fbcc (plain)
1
2
3
4
5
6
__kernel void
compiler_function_constant0(__constant int *c0, __constant char *c1, __global int *dst, int value)
{
  int id = (int)get_global_id(0);
  dst[id] = value + c0[id%69] + c1[0];
}