summaryrefslogtreecommitdiff
path: root/kernels/compiler_rotate.cl
blob: 8d0dd0f2bee5b825f44778ba0561496a0fe37bce (plain)
1
2
3
4
5
kernel void compiler_rotate(global int *src, global int *dst, global int *y) {
  int i = get_global_id(0);
  dst[i] = rotate(src[i], y[i]);
}