summaryrefslogtreecommitdiff
path: root/if_ge.cl
blob: 045d1565d2e34c771dbf17be7ac22c9624096564 (plain)
1
2
3
4
5
6
7
__kernel void if_ge(__global int * out, int arg0, int arg1)
{
   out[0] = 0;
   if (arg0 >= arg1) {
      out[0] = 1;
   }
}