Table of Contents | ||
---|---|---|
|
...
Please see About SCU for more information about our HPC infrastructure.
...
Slurm partitions
Slum partitions are cluster specific. All users will have access to the general partitions: scu-cpu
and scu-gpu
...
Code Block |
---|
srun -n1 --pty --partition=scu-cpu --mem=8G bash -i |
To request specific numbers of GPUs, you should add your request to your srun/sbatch:
Below is an example of requesting 1 GPU - can request up to 4 GPUs on a single node
Code Block |
---|
--gres=gpu:1 |
...
A simple job submission example
...
Code Block | ||
---|---|---|
| ||
srun -n1 --pty --partition=scu-cpu --mem=8G bash -i > your_CWID@nodeXXXCWID@scu-node### ~ $ |
Depending on the resource request, your interactive session might start right away, or it may take a very long time to start (for the above command, the interactive session should almost always start right away).
...