Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions .github/scripts/submit-slurm-job.sh
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,12 @@ case "$cluster" in
compiler_flag="f"
account="CFD154"
job_prefix="MFC"
qos="hackathon"
# The hackathon QOS was a temporary grant and is no longer held by
# CFD154; submitting under it now fails outright with "Invalid qos
# specification". "normal" is the only QOS on this allocation without a
# one-job-at-a-time cap, so it is the only one that can run the CI
# matrix concurrently.
qos="normal"
# Let each job's slurmstepd broker its own steps instead of routing
# every srun through slurmctld. The in-job test suite launches ~1700+
# srun steps per allocation, which congests the Frontier controller.
Expand All @@ -67,7 +72,7 @@ case "$cluster" in
compiler_flag="famd"
account="CFD154"
job_prefix="MFC"
qos="hackathon"
qos="normal"
extra_sbatch="#SBATCH --stepmgr"
test_time="01:59:00"
bench_time="01:59:00"
Expand Down
Loading