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