worker.h 238 B

1234567891011
  1. #ifndef __WORKER_H__
  2. #define __WORKER_H__
  3. #include <string>
  4. // Used to prefix output from this process
  5. extern std::string output_prefix;
  6. int worker_main(const char *controller_host, unsigned short controller_port, int gpu_id);
  7. #endif