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