summaryrefslogtreecommitdiff
path: root/loop_lt.cl
blob: d52c5a8028f06464eb6ba54093acac0fc45541eb (plain)
1
2
3
4
5
6
7
8
9
__kernel void loop_lt(__global int * out, int iterations)
{
  unsigned i;
  unsigned base = get_global_id(0) * iterations;
  for (i = 0; i < iterations; i++) {
    unsigned id = (base + i);
    out[id] = id;
  }
}