slurm如何为资源较低的工作分配高优先级?这需要slurm,但是通过设置,我只能获得高资源的更高优先级。
PriorityType=priority/multifactor
PriorityFlags=SMALL_RELATIVE_TO_TIME
AccountingStorageTRES=cpu,mem
PriorityWeightTRES=cpu=100,mem=1000
有人有典型的slurm设置?
低CPU ->高优先级
低内存->高优先级
发布于 2022-01-04 08:19:21
您要在PriorityFavorSmall中查找slurm.conf选项。看看优先/多因素页面。你需要的是:
PriorityWeightJobSize=1000 #This value depends on the other weights. Choose something suitable for your config.
PriorityFavorSmall=YES
PriorityFlags=SMALL_RELATIVE_TO_TIME #If you want to take the walltime into account
https://stackoverflow.com/questions/70572618
复制相似问题