#ifdef __APPLE__# include <OpenCL/opencl.h>#else# include <CL/cl.h>#endifintmain(void){
cl_uint platformIdCount;// We can't assert on the result because this may return an error if no ICD// is// foundclGetPlatformIDs(0, NULL, &platformIdCount);return0;}