-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
changes to work on cn84 See merge request imc030/tiny-voxceleb-skeleton-2023!3
- Loading branch information
Showing
10 changed files
with
49 additions
and
72 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
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
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
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
The data science group has a small compute cluster for educational use. We are going to use this for the Speaker Recognition Challenge of the course [MLiP 2023](https://brightspace.ru.nl/d2l/home/333310). | ||
|
||
The cluster consists of two _compute nodes_, lovingly named `cn47` and `cn48`, and a so-called _head node_, `slurm22`. All these machines live in the domain `science.ru.nl`, so the head node's fully qualified name is `slurm22.science.ru.nl`. | ||
The cluster consists of two _compute nodes_, lovingly named `cn47` and `cn48`, and a so-called _head node_, `cn84`. All these machines live in the domain `science.ru.nl`, so the head node's fully qualified name is `cn84.science.ru.nl`. | ||
|
||
Both compute nodes have the following specifications: | ||
- 8 Nvidia RTX 2080 Ti GPUs, with 11 GB memory | ||
|
@@ -20,19 +20,19 @@ You need a [science account](https://wiki.cncz.science.ru.nl/Nieuwe_studenten#.5 | |
|
||
These nodes are not directly accessible from the internet, in on order to reach these machines you need to either | ||
- use the science.ru [VPN](https://wiki.cncz.science.ru.nl/Vpn) | ||
- you have direct access to `slurm22`, this is somewhat easier with copying through `scp` and `rsync`, remote editing, etc. | ||
- you have direct access to `cn84`, this is somewhat easier with copying through `scp` and `rsync`, remote editing, etc. | ||
- ``` | ||
local+vpn$ ssh $SCIENCE_USERNAME@slurm22.science.ru.nl | ||
local+vpn$ ssh $SCIENCE_USERNAME@cn84.science.ru.nl | ||
``` | ||
- login through the machine `lilo.science.ru.nl` | ||
- The preferred way is to use the `ProxyJump` option of ssh: | ||
``` | ||
local$ ssh -J [email protected] $SCIENCE_USERNAME@slurm22.science.ru.nl | ||
local$ ssh -J [email protected] $SCIENCE_USERNAME@cn84.science.ru.nl | ||
``` | ||
- Alternatively, you can login in two steps. In case you have to transport files, please be reminded only your (small) home filesystem `~` is available on `lilo`. | ||
``` | ||
local$ ssh [email protected] | ||
lilo7$ ssh slurm22 | ||
lilo7$ ssh cn84 | ||
``` | ||
Either way, you will be working through a secure-shell connection, so you must have a `ssh` client on your local laptop/computer. | ||
|
@@ -71,7 +71,7 @@ It is possible to ask for an interactive shell to one of the compute nodes. Thi | |
srun --pty --partition csedu --gres gpu:1 /bin/bash | ||
hostname ## we're on cn47 or cn48 | ||
nvidia-smi ## it appears there is 1 GPU available in this machine | ||
exit ## make the slot available again, exit to slurm22 again | ||
exit ## make the slot available again, exit to cn84 again | ||
``` | ||
In general, we would advice not to use the interactive shell option, as described here, with a GPU and all, unless you need to just do a quick check in a situation where a GPU is required. | ||
|
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
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
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
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
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
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