summaryrefslogtreecommitdiff
path: root/global_id_3d.cl
blob: 5d4ad513e4f873fe9693bd860a5eced7608fdded (plain)
1
2
3
4
5
__kernel void global_id_3d(__global int * out)
{
  out[0] =5;
  out[1] = 10;
}