Skip to content

Instantly share code, notes, and snippets.

@marty1885
Created June 22, 2017 15:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marty1885/1e7433bca3072aa7a42aef248a0bd6ec to your computer and use it in GitHub Desktop.
Save marty1885/1e7433bca3072aa7a42aef248a0bd6ec to your computer and use it in GitHub Desktop.
__kernel foo(float* in, float* out)
{
int id = get_global_id(0);
out[id] = in[id]*100;
}
__kernel bar(float* out)
{
int id = get_global_id(0);
out[id] = 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment