private static int getPlatformIDs(
     int count, Pointer<cl_platform_id> out, Pointer<Integer> pCount) {
   try {
     return CL.clIcdGetPlatformIDsKHR(count, out, pCount);
   } catch (Throwable th) {
     return CL.clGetPlatformIDs(count, out, pCount);
   }
 }