Guest User

Untitled

a guest
Apr 23rd, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.10 KB | None | 0 0
  1. kernel calcSin(global float *data) {
  2. int id = get_global_id(0);
  3. data[id] = sin(data[id]);
  4. }
Add Comment
Please, Sign In to add comment