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