我最近一直在尝试配置HTcondor。我设法提交了连续的(香草宇宙)作业,没有任何错误或问题。但是当我尝试提交并行(并行宇宙)作业时,这些作业似乎永远都会被塞进队列中。
*提交文件编码:
universe = parallel
executable = SommeP
output = outputP.$(NODE)
error = errorP.$(NODE)
log = logP
machine_count = 4
should_transfer_files = yes
when_to_transfer_output = on_exit
queue***Condor_q
***Condor_status (1个主2个从,共6个插槽) enter image description here
发布于 2018-02-13 23:49:16
在调度并行宇宙作业之前,condor池的管理员必须配置执行节点,以便将您的提交节点视为专用调度器。有关更多信息,请参阅手册中的并行应用程序部分:http://research.cs.wisc.edu/htcondor/manual/current/2_9Parallel_Applications.html#SECTION00392000000000000000
https://stackoverflow.com/questions/48288798
复制相似问题