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