You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

dsp_master.py 328B

2 anni fa
2 anni fa
2 anni fa
1234567891011
  1. # -*- coding: utf-8 -*-
  2. from service import Dispatcher
  3. # import torch
  4. '''
  5. dsp主程序入口
  6. '''
  7. if __name__ == '__main__':
  8. print("(♥◠‿◠)ノ゙ DSP【算法调度服务】开始启动 ლ(´ڡ`ლ)゙")
  9. # torch.multiprocessing.set_start_method('spawn')
  10. Dispatcher.DispatcherService().start_service()