summaryrefslogtreecommitdiffstats
path: root/Tests/FindOpenCL/Test/main.c
blob: b075caf19ba9e3414702611140561e62a9779471 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifdef __APPLE__
  #include <OpenCL/opencl.h>
#else
  #include <CL/cl.h>
#endif

int main()
{
  cl_uint platformIdCount;

  // We can't assert on the result because this may return an error if no ICD is
  // found
  clGetPlatformIDs (0, NULL, &platformIdCount);

  return 0;
}