/**
  * The sizes of the program binaries for each device.
  *
  * @param program The program
  * @return The value
  */
 public static long[] getBinarySizes(cl_program program) {
   int numBinaries = getNumDevices(program);
   return Infos.getSizes(Infos.FOR_PROGRAM, program, CL_PROGRAM_BINARY_SIZES, numBinaries);
 }