users
Date: Friday, 4 April 2025 at 6:37 am
To: Slurm Users Mailing List
Subject: [slurm-users] Re: Minimum cpu cores per node partition level
configuration
Hi Tim,
"Cutts, Tim via slurm-users"
writes:
> You can set a partition QoS which specifies a minimum. We have such a qo
You can set a partition QoS which specifies a minimum. We have such a qos on
our large-gpu partition; we don’t want people scheduling small stuff to it, so
we have this qos:
$ sacctmgr show qos large-gpu --json | jq '.QOS[] | { name: .name, min_limits:
.limits.min }'
{
"name": "large-gpu
Hi Tim,
"Cutts, Tim via slurm-users"
writes:
> You can set a partition QoS which specifies a minimum. We have such a qos on
> our large-gpu partition; we don’t want people scheduling small stuff to it,
> so we
> have this qos:
How does this affect total throughput? Presumably, 'small' GPU
Hi Jeherul Islam,
Such a policy may be implemented using a job_submit plugin which you have
to write yourself. You may perhaps find this Wiki page useful:
https://wiki.fysik.dtu.dk/Niflheim_system/Slurm_configuration/#job-submit-plugins
On 3/28/25 05:36, Jeherul Islam via slurm-users wrote:
I