Skip to content

Instantly share code, notes, and snippets.

@modohash
Created June 12, 2013 13:42
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 modohash/5765343 to your computer and use it in GitHub Desktop.
Save modohash/5765343 to your computer and use it in GitHub Desktop.
The simplest OpenCL program ever!
#include <CL/cl.h>
int main(int argc, char **argv){
cl_platform_id test;
cl_uint num;
cl_uint ok = 1;
clGetPlatformIDs(ok, &test, &num);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment