#!/bin/bash
#
#SBATCH --job-name=job-ram
#SBATCH --output=job-ram.out
#
# either mem-per-cpu or mem but not both
###SBATCH --mem-per-cpu=64G   # = 64G / 3G = allocate 22 CPU + RAM to provide 64G
#SBATCH --mem=64G             # 64G for the job

echo
echo -n "Hostname:              " ; hostname -f
echo

scontrol show job $SLURM_JOB_ID

echo
echo "Note the NumCPUs= and the mem= "
