1 2 3 4 5 6
__kernel void test_write_only(__global int *dst) { int id = (int)get_global_id(0); dst[id] = id; }