-
|
没有办法从命令行控制max-partition-size吗? |
Beta Was this translation helpful? Give feedback.
Answered by
Leymore
May 29, 2024
Replies: 1 comment 2 replies
-
|
目前 OpenCompass 进行任务切分的默认逻辑有更新:
|
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
airaria
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
目前 OpenCompass 进行任务切分的默认逻辑有更新:
--max-num-workers的值是n,假设待测试的有M个模型和D个数据集n份,每一份都只有1 / n份的数据。然后每个模型对应的切分任务会被均匀地分成n个 task,共计n * M个 task,然后用n个 worker 去并发地跑。--max-workers-per-gpu控制。--max-num-workers,那么就会有排队。