Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updated queue limits #403

Merged
merged 2 commits into from
Jul 17, 2023
Merged
Show file tree
Hide file tree
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
16 changes: 8 additions & 8 deletions layouts/shortcodes/queues.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,18 +26,18 @@
<td class="queue" scope="row"><code><a href="/userinfo/rivanna/slurm/#basic-serial-program">standard</a></code></td>
<td>7 days</td>
<td scope="row">1</td>
<td scope="row">40</td>
<td scope="row">40</td>
<td scope="row">37</td>
<td scope="row">37</td>
<td scope="row">9GB</td>
<td scope="row">750GB</td>
<td scope="row">1.00</td>
</tr>
<tr>
<td class="queue" scope="row"><code><a href="/userinfo/rivanna/slurm/#job-scripts-for-parallel-programs">parallel</a></code></td>
<td scope="row">3 days</td>
<td scope="row">25</td>
<td scope="row">1500</td>
<td scope="row">40</td>
<td scope="row">50</td>
<td scope="row">1850</td>
<td scope="row">37</td>
<td scope="row">9GB</td>
<td scope="row">375GB</td>
<td scope="row">1.00</td>
Expand All @@ -47,7 +47,7 @@
<td scope="row">4&nbsp;days</td>
<td scope="row">2</td>
<td scope="row">32</td>
<td scope="row">48</td>
<td scope="row">45</td>
<td scope="row">60GB</td>
<td scope="row">1464GB</td>
<td scope="row">1.00</td>
Expand All @@ -57,7 +57,7 @@
<td scope="row">3 days</td>
<td scope="row">4</td>
<td scope="row">32GPUs</td>
<td scope="row">128</td>
<td scope="row">125</td>
<td scope="row">6GB</td>
<td scope="row">1953GB</td>
<td scope="row">3.00 <a href="#gpu-detail">*</a></td>
Expand All @@ -67,7 +67,7 @@
<td scope="row">1 hour</td>
<td scope="row">2</td>
<td scope="row">16</td>
<td scope="row">28</td>
<td scope="row">25</td>
<td scope="row">6GB</td>
<td scope="row">246GB</td>
<td scope="row">0.00</td>
Expand Down
2 changes: 1 addition & 1 deletion static/scripts/fluent.slurm
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash
#SBATCH --nodes=2
#SBATCH --ntasks-per-node=40
#SBATCH --ntasks-per-node=36
#SBATCH --time=12:00:00
#SBATCH --partition=parallel
#SBATCH -J myFluentrun
Expand Down
2 changes: 1 addition & 1 deletion static/scripts/namd.slurm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#SBATCH -A mygroup # your allocation account
#SBATCH -p parallel # partition
#SBATCH -N 2 # number of nodes
#SBATCH --ntasks-per-node=40 # number of tasks
#SBATCH --ntasks-per-node=36 # number of tasks
#SBATCH -t 24:00:00 # time

module purge
Expand Down
2 changes: 1 addition & 1 deletion static/scripts/qe_cpu.slurm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#SBATCH -A myallocation # your allocation
#SBATCH -p parallel # partition
#SBATCH -N 2 # number of nodes
#SBATCH --ntasks-per-node=40 # number of tasks
#SBATCH --ntasks-per-node=36 # number of tasks
#SBATCH -t 1-00:00:00 # walltime

module purge
Expand Down
Loading