summaryrefslogtreecommitdiff
path: root/kernels/compiler_byte_scatter.cl
blob: ab56ba8af31909c4a4390317482a7bdfc89ee46b (plain)
1
2
3
4
5
6
7
__kernel void
compiler_byte_scatter(__global char *dst)
{
  int id = (int) get_global_id(0);
  dst[id] = (char) id;
}