1
1
I wrote Perl scripts to analyze my simulating data. This is not a concurrent program. In the cluster, there are eight nodes. Each of node has 2 sockets which possesses 10 cores. I want to submit my job using Slurm and only request one core to perform the analysis. So, I can submit more (20) jobs on one node. However, I am unable to realize this goal. Below is my scripts.
#!/bin/sh
#SBATCH -n 1
#SBATCH --mem-per-cpu=10gb
#SBATCH --ntasks=1
#SBATCH --cpus-per-task=1
#SBATCH -t 45-00:00:00
#SBATCH -J 9430%j
#SBATCH -o 9430.out
#SBATCH -e 9430.err
/cm/shared/scripts/wcnqn.auto.pl
Where wcnqn.auto.pl
is my program. 9430
is atomID which is used as file name.
System info:
- CentOS 7
- Cluster management: Bright Cluster Manager
- Number of nodes: 8
- Number of sockets per node: 2
- Number of cores per socket:10
- RAM per node: 125GB
Any help and further comments would be highly appreciated.
Thanks. You are right. – Leon – 2019-04-23T14:26:24.643