Intel® oneAPI Math Kernel Library
Ask questions and share information with other developers who use Intel® Math Kernel Library.
6980 Discussions

Please explain the meaning of "#PBS -l nodes=2:ppn=1" and its use in Launching a Distributed-Memory Job?

AjayBadita
Beginner
1,420 Views

I followed the same example as mentioned in the link https://devcloud.intel.com/datacenter/learn/advanced-queue/distributed-memory-architecture. But after mentioning the nodes as 2 (#PBS -l nodes=2:ppn=1) in the distrJob2 the output says

 

Launching the parallel job from mother superior s001-n053...

Hello world from host s001-n053 (rank 1)!

Hello world from host s001-n101 (rank 2)!

Hello world from host s001-n053 (rank 0)!

Hello world from host s001-n101 (rank 3)!

 

Why is it showing four? Also please explain me the meaning of rank?

0 Kudos
1 Solution
Ansif_M_Intel
Employee
1,142 Views

Hi,

 

PPN :Process per node

Nodes:Number of nodes requested for the job.

Rank : Serial number given to each process in the MPI job

Here you have given PPN as 1 but devcloud by default reverts it back to 2. You can find the same in your job output logs. In short, your job is launched on 2 nodes with ppn 2 each.i.e. It will run a total of 4 jobs, 2 in each node.

This explain the logs obtained.

 

Hope this helped.

 

 

View solution in original post

3 Replies
Ansif_M_Intel
Employee
1,143 Views

Hi,

 

PPN :Process per node

Nodes:Number of nodes requested for the job.

Rank : Serial number given to each process in the MPI job

Here you have given PPN as 1 but devcloud by default reverts it back to 2. You can find the same in your job output logs. In short, your job is launched on 2 nodes with ppn 2 each.i.e. It will run a total of 4 jobs, 2 in each node.

This explain the logs obtained.

 

Hope this helped.

 

 

Ansif_M_Intel
Employee
1,142 Views

Hi,

Thanks for the response.

We would be glad to assist you .Please create a new thread if you face any issues.

After case closure, you will receive a survey email. We appreciate it if you can complete this survey regarding the support you received.

0 Kudos
AjayBadita
Beginner
1,142 Views
0 Kudos
Reply