Skip to main content Link Menu Expand (external link) Document Search Copy Copied

Slurm Interactive

An sinteractive command provides interactive bash on compute node. It’s useful for run a sample experiment, setup cluster enviroment for experiment, or transfer file from compute node to other directories.


  1. Run command sinteractive followed by slurm arguments.
     sinteractive -p gpu-cluster --gpus 2 --mem=32GB
    
    • -p: Partition
    • --gpus: A number of GPUs
    • --mem: Amount of memory
  2. There will be an interactive shell in compute node. Then, run command
     module load CUDA/10.1
     module load cuDNN/7
     module load Anaconda3
    
     source activate jupyter