Mercurial > hg > Game > Cerium
view example/flip/twice.cl @ 1813:d7973604e81f draft
fix memin size
author | kkb |
---|---|
date | Thu, 12 Dec 2013 18:34:16 +0900 |
parents | 61164c687b29 |
children | 273de551f726 |
line wrap: on
line source
__kernel void twice(__constant int *data_count, __global int *input_data) // __global int *output_data) { long count = (long)data_count[0]; for (int i = 0; i<count; i++) { // output_data[i] = 2*input_data[i]; input_data[i] *= 2; } }