- # squeue -o "%A %c %C" JOBID MIN_CPUS CPUS 48 1 1 49 1 1 50 1 1 51 1 1 52 1 1 53 1 1 46 1 8 47 1 8 -
Each job is the same bash script: - #!/bin/bash #SBATCH -n 1 #SBATCH -t 0-00:05 #SBATCH -p short sleep 200 - In slurm.conf I have CPUs=4 for each node (but each node actually has a Intel Core i7). My question is: why is slurm assigning only one job per node and each job is consuming 8 CPUs? This should not be happening because the script is single CPU and each node has only 4 CPUs in the specification, so the correct would be 4 jobs per node, right?