This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
|
guide:gpu [2023/03/07 17:49] wikiadmin |
guide:gpu [2025/08/07 12:51] (current) kevin |
||
|---|---|---|---|
| Line 27: | Line 27: | ||
| ====Access==== | ====Access==== | ||
| - | Access to the GPU nodes is by PI application only through the CHPC [[https:// | + | Principle Investigators apply for GPU access for their Research Programme members |
| ====Allocation===== | ====Allocation===== | ||
| Line 52: | Line 52: | ||
| ^ Queue name ^ Max. CPUs ^ Max. GPUs ^ PBSPro options | ^ Queue name ^ Max. CPUs ^ Max. GPUs ^ PBSPro options | ||
| - | | **gpu_1** | + | | **gpu_1** |
| - | | **gpu_2** | + | | **gpu_2** |
| - | | **gpu_3** | + | | **gpu_3** |
| | **gpu_4** | | **gpu_4** | ||
| - | Note the '' | + | Note the '' |
| ====GPU Queue Limits==== | ====GPU Queue Limits==== | ||
| Line 73: | Line 73: | ||
| <code bash> | <code bash> | ||
| - | qsub -I -q gpu_1 -P PRJT1234 | + | qsub -I -q gpu_1 -P PRJT1234 |
| </ | </ | ||
| **NB:** Replace //'' | **NB:** Replace //'' | ||
| Line 85: | Line 85: | ||
| #PBS -N nameyourjob | #PBS -N nameyourjob | ||
| #PBS -q gpu_1 | #PBS -q gpu_1 | ||
| - | #PBS -l ncpus=10:ngpus=1 | + | #PBS -l select=1:ncpus=4:ngpus=1 |
| #PBS -P PRJT1234 | #PBS -P PRJT1234 | ||
| #PBS -l walltime=4: | #PBS -l walltime=4: | ||
| - | #PBS -o / | ||
| - | #PBS -e / | ||
| #PBS -m abe | #PBS -m abe | ||
| #PBS -M your.email@address | #PBS -M your.email@address | ||
| Line 104: | Line 102: | ||
| ./ | ./ | ||
| </ | </ | ||
| + | |||
| + | As usual, replace '' | ||
| + | |||
| + | ====GPU Memory==== | ||
| + | |||
| + | Most of the V100 GPUs only have 16GiB of memory. | ||
| + | |||
| + | #PBS -l select=1: | ||
| + | |||
| + | or | ||
| + | |||
| + | #PBS -l select=1: | ||
| + | |||
| + | > Note that asking for a specific node is likely to lead to longer queue times as your job has to wait until that node becomes available. | ||
| + | | ||
| =====Compiling GPU Code===== | =====Compiling GPU Code===== | ||