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