cluster:cluster
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
cluster:cluster [2023-03-20 11:38] – [Szenario 2: parallel] Markus Rosenstihl | cluster:cluster [2024-10-08 11:54] (current) – [AG Vogel] Markus Rosenstihl | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Tips/Tricks ====== | ====== Tips/Tricks ====== | ||
- | ===== Profiling ==== | + | ===== Profiling |
You can profile programs with [[https:// | You can profile programs with [[https:// | ||
Line 20: | Line 20: | ||
=== Generelle Punkte === | === Generelle Punkte === | ||
== Gross ist besser == | == Gross ist besser == | ||
- | Lieber wenige grosse Dateien als viele kleine Dateien, grose Dateien erzeugen weniger IOPS, das bleastet | + | Lieber wenige grosse Dateien als viele kleine Dateien, grose Dateien erzeugen weniger IOPS, das belastet |
Nicht vergessen, es könnten noch viele andere ebenfalls auf das gleiche Dateisystem zugreifen. | Nicht vergessen, es könnten noch viele andere ebenfalls auf das gleiche Dateisystem zugreifen. | ||
Line 291: | Line 291: | ||
Another possible way is the '' | Another possible way is the '' | ||
+ | One can let jobs wait for each other also with the '' | ||
+ | This tells the job to begin execution after any previously launched jobs sharing the same job name and user has [[https:// | ||
+ | |||
+ | <code bash> | ||
+ | # Abstract search space parameters | ||
+ | min=1 | ||
+ | max=2000 | ||
+ | chunksize=200 | ||
+ | for i in $(seq $min $chunksize $max); do | ||
+ | ${CMD_PREFIX} sbatch \ | ||
+ | -J ${JOBNAME}_$(($i/ | ||
+ | ${LAUNCHER} --joblog log/ | ||
+ | done | ||
+ | </ | ||
+ | |||
+ | ===== Tools ===== | ||
+ | These are tools that exist, if requested we will try and make them available on the cluster: | ||
+ | |||
+ | * [[https:// | ||
+ | * [[https:// | ||
+ | * [[https:// | ||
+ | * [[https:// | ||
====== Group Specific ====== | ====== Group Specific ====== | ||
===== AG Drossel ===== | ===== AG Drossel ===== | ||
===== AG Liebchen ===== | ===== AG Liebchen ===== | ||
===== AG Vogel ===== | ===== AG Vogel ===== | ||
+ | |||
+ | The head node protein does not allow password logins, you need to use ssh keys. | ||
+ | |||
+ | - create a key: '' | ||
+ | - We admins stronlgy recommend to use a very strong passphrase. Together with ssh-agent you have to type it only once per login to your desktop! | ||
+ | - add the public part to the authorized_keys file and set correct premissions: | ||
+ | - now login to protein.cluster, | ||
+ | | ||
+ | ===== SSH Agent ===== | ||
+ | |||
+ | The '' | ||
+ | |||
+ | {{: | ||
+ | |||
+ | | ||
cluster/cluster.1679308706.txt.gz · Last modified: 2023-03-20 10:00 (external edit)