enum UM_DEVICES
{
CPU, GPU
};

#include <stdio.h>

int main()
{
  int n[2] = {CPU, GPU};
  printf("%d %d\n", n[CPU], n[GPU]);
}
