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