summaryrefslogtreecommitdiff
path: root/kernels/compiler_rhadd.cl
blob: 4024acef7615809ac3edf6600c623d1900f69908 (plain)
1
2
3
4
kernel void compiler_rhadd(global int *src1, global int *src2, global int *dst) {
  int i = get_global_id(0);
  dst[i] = rhadd(src1[i], src2[i]);
}