Replies: 2 comments 1 reply
|
Hello @gpkmohan ,
Could you please take a look at |
0 replies
|
For information about required quota it's hard to say without seeing your blueprint. |
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
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
All reactions