-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e04f9eb
commit 3b86f7b
Showing
1 changed file
with
3 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,13 +10,14 @@ This solution is easy to set up and constrained by the SLURM job's resource limi | |
First, connect to the bastion node by running: | ||
|
||
```console | ||
ssh [email protected] | ||
$ ssh <SWC-USERNAME>@ssh.swc.ucl.ac.uk | ||
$ ssh hpc-gw1 | ||
``` | ||
|
||
Once connected, request an interactive job via SLURM to access a compute node: | ||
|
||
```console | ||
srun -p fast --pty bash -i | ||
$ srun -p fast -n 4 --mem 8G --pty bash -i | ||
``` | ||
|
||
In this example, `-p fast` requests the fast partition, with default time settings, though you may adjust this according to your needs. | ||
|