summaryrefslogtreecommitdiff
path: root/kernels/builtin_local_size.cl
blob: 979d907865920d09ad5975a516efffa9c8d175f9 (plain)
1
2
3
kernel void builtin_local_size( __global int *ret, __global int *i_dim ) {
  *ret = get_local_size( *i_dim);
}