summaryrefslogtreecommitdiff
path: root/if_ge.cl
diff options
context:
space:
mode:
Diffstat (limited to 'if_ge.cl')
-rw-r--r--if_ge.cl7
1 files changed, 7 insertions, 0 deletions
diff --git a/if_ge.cl b/if_ge.cl
new file mode 100644
index 0000000..045d156
--- /dev/null
+++ b/if_ge.cl
@@ -0,0 +1,7 @@
+__kernel void if_ge(__global int * out, int arg0, int arg1)
+{
+ out[0] = 0;
+ if (arg0 >= arg1) {
+ out[0] = 1;
+ }
+}