Skip to content

Commit

Permalink
Merge branch 'ndk/machinefiles/pm-add-shared-qos' into next (PR #6411)
Browse files Browse the repository at this point in the history
After #6402 removed exclusive directive, which allows jobs to use shared qos, I realized we still needed the option to use shared qos.

This PR should allow:

./xmlchange JOB_QUEUE=shared
I also adjusted the total number of nodes available for each machine.

[bfb]
  • Loading branch information
ndkeen committed May 20, 2024
2 parents 12e80e1 + 1d2e037 commit e7b7d5a
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions cime_config/machines/config_batch.xml
Original file line number Diff line number Diff line change
Expand Up @@ -461,8 +461,9 @@
<directive> -G 0</directive>
</directives>
<queues>
<queue walltimemax="00:45:00" nodemax="1600" default="true">regular</queue>
<queue walltimemax="00:45:00" nodemax="1600" strict="true">preempt</queue>
<queue walltimemax="00:45:00" nodemax="1792" default="true">regular</queue>
<queue walltimemax="00:45:00" nodemax="1792" strict="true">preempt</queue>
<queue walltimemax="00:45:00" nodemax="1792" strict="true">shared</queue>
<queue walltimemax="00:15:00" nodemax="4" strict="true">debug</queue>
</queues>
</batch_system>
Expand Down Expand Up @@ -514,8 +515,9 @@
</directives>
<queues>
<!-- Note: walltime is not the max walltime, but the default - see NERSC docs for Q limits, https://docs.nersc.gov/jobs/policy/ -->
<queue walltimemax="00:30:00" nodemax="4096" default="true">regular</queue>
<queue walltimemax="00:30:00" nodemax="4096" strict="true">preempt</queue>
<queue walltimemax="00:30:00" nodemax="3072" default="true">regular</queue>
<queue walltimemax="00:30:00" nodemax="3072" strict="true">preempt</queue>
<queue walltimemax="00:30:00" nodemax="3072" strict="true">shared</queue>
<queue walltimemax="00:30:00" nodemax="8" strict="true">debug</queue>
</queues>
</batch_system>
Expand Down

0 comments on commit e7b7d5a

Please sign in to comment.