πHow to use HPC from department of Computer Science
Follow this tutorial to learn how to use HPC from depart of Computer Science
// Some code
#!/bin/bash -l
#SBATCH --job-name=frommaolei # job name
#SBATCH --account=slurmgeneral # only applicable if user is assigned multiple accounts
#SBATCH --ntasks=1 # commands to run in parallel
#SBATCH --output=frommaolei.log # output and error log
#SBATCH --error=frommaolei.err
#SBATCH --gres=gpu:1
#SBATCH --mem=64gb # request 1gb of memory
#SBATCH --nodelist=slurm-p100-collab
#SBATCH --mail-type=END,FAIL
#SBATCH --mail-user=chu034@odu.edu
hostname
python3 test.pyLast updated