Skip to content

Instantly share code, notes, and snippets.

@soravux
Created March 23, 2014 22:11
Show Gist options
  • Select an option

  • Save soravux/9730637 to your computer and use it in GitHub Desktop.

Select an option

Save soravux/9730637 to your computer and use it in GitHub Desktop.
__kernel void example( __global char* buf, __global char* buf2 ){
int x = get_global_id(0);
buf2[x] = buf[x];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment