Replies: 2 comments 1 reply
-
Hello @gpkmohan ,
Could you please take a look at |
Beta Was this translation helpful? Give feedback.
-
For information about required quota it's hard to say without seeing your blueprint. |
Beta Was this translation helpful? Give feedback.
-
Hi List
I am trying to do a n MPI calculation and It was running ok with 32 CPUs as shown in the Slurm script below
#!/bin/bash
#SBATCH --time=20:05:00
#SBATCH --partition=compute # important
#SBATCH --nodes=4 # NUMBER OF NODES
#SBATCH --ntasks-per-node=8 # n cores / node
mpiexec -n 32 /home/dr_preethibaselios_gmail_com/qestatic/bin/pw.x < scftest.pw > log 2>&1
I use 8-core compute nodes (C2 type with 8 cores) and I have sufficient quotas in .
But when I use,
nodes=8, ntasks-per-node=8 , and mpiexec -n 64 ...
It was NOT allocating 8 nodes but 7 nodes only!
And it can seen from my Dashboard () and
[dr_preethibaselios_gmail_com@hpcslurm-slurm-login-001 testqe]$ sinfo
My question is: Why is not allocating, then only it make a 8-node cluster?
How to check that I am necessary quotas other than instances to run this job?
Thanks in advance
Km
Beta Was this translation helpful? Give feedback.
All reactions