SLURM - job scheduler that managers the queue and determines the order in which jobs are executed

Youtube video onboarding -

https://youtu.be/Pak8OOLDNkQ

Onboarding Steps:

  1. Join #computing on slack
  2. request a FASRC account https://portal.rc.fas.harvard.edu/request/account/new for sneel lab
  3. Join our Github : https://github.com/safr-ai-lab/Cluster-Utils-Files/tree/main/FASRC

Resources 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)