diff options
Diffstat (limited to 'if_gt.cl')
-rw-r--r-- | if_gt.cl | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/if_gt.cl b/if_gt.cl new file mode 100644 index 0000000..1ffed51 --- /dev/null +++ b/if_gt.cl @@ -0,0 +1,7 @@ +__kernel void if_gt(__global int * out, int arg0, int arg1) +{ + out[0] = 0; + if (arg0 > arg1) { + out[0] = 1; + } +} |