SLURM - job scheduler that managers the queue and determines the order in which jobs are executed
Youtube video onboarding -
Onboarding Steps:
sneel
labResources for using FASRC
How to install python libraries
never run anything serious on the login node, (to set things up, run something interactively)
Like this - CPU only
#!/bin/bash
salloc -p test --mem=20G -t 0-06:00
with gpu:
#!/bin/bash
salloc -p gpu_test --mem=20G -t 0-06:00
Now set up a python virtual environment (if you don’t know what this, please ask someone)