summaryrefslogtreecommitdiff
path: root/kernels/compiler_insn_selection_max.cl
blob: 762de2b3ece4caef650307550e8674e5b4a0cbda (plain)
1
2
3
4
5
6
7
__kernel void
compiler_insn_selection_max(__global float* src, __global float* dst)
{
  int id = (int)get_global_id(0);
  dst[id] = max(src[id], src[0]);
}