summaryrefslogtreecommitdiff
path: root/kernels/compiler_arith_shift_right.cl
blob: 03a4d8d861c9abd34799d124462c7b74b34b452c (plain)
1
2
3
4
kernel void compiler_arith_shift_right(global int *src, global int *dst) {
    int i = get_global_id(0);
    dst[i] = src[i] >> 24;
}