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