Facing error while running dpgen #1269
-
Please check the error code. No matter how I try to submit one task at a time, it tries to do all at once and giving error. I want one fp tasks at a time , it is submitting all 20 tasks at once. I have tried group size 0 and paradeg 1 also. Description2023-07-05 15:38:17,841 - INFO : info:check_all_finished: False The above exception was the direct cause of the following exception: Traceback (most recent call last): |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
The log seems correct. It submitted only one job, which contained 20 tasks. |
Beta Was this translation helpful? Give feedback.
group_size=0
means a job with all tasks.para_deg=1
means executing tasks one by one.By setting
group_size=1
, each job contains one task. The jobs will always be submitted simultaneously.