<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic MPI Rank placement in Intel® MPI Library</title>
    <link>https://community.intel.com/t5/Intel-MPI-Library/MPI-Rank-placement/m-p/1080375#M4871</link>
    <description>&lt;P&gt;I am experimenting with MPI (world) across different systems. One system is a Xeon Phi KNL (64 cores, 256 logical processors) called KNL, and the other system is an E5-2620v2 (6 cores, 12 logical processors) called Thor.&lt;/P&gt;

&lt;P&gt;What I intended to do is do is to partition the KNL into 2 ranks, and then run the 3rd rank on the E5-2620v2.&lt;/P&gt;

&lt;P&gt;mpirun -n 3 -ppn 1 -hosts KNL,KNL,Thor program arg arg arg&lt;/P&gt;

&lt;P&gt;This launches 2 ranks on KNL and 1 rank on Thor as expected&lt;/P&gt;

&lt;P&gt;So far, so good.&lt;/P&gt;

&lt;P&gt;Rank 0 was located on KNL&lt;BR /&gt;
	Rank 1 on Thor&lt;BR /&gt;
	Rank 2 on KNL&lt;/P&gt;

&lt;P&gt;Aren't the nodes associated in the -hosts order?&lt;/P&gt;

&lt;P&gt;What is the recommended way to control rank placement?&lt;/P&gt;

&lt;P&gt;When I try 8 on KNL and 1 on Thor, the distribution is quite goofy. (likely my issue)&lt;/P&gt;

&lt;P&gt;I tried using the : separator to sequester the KNL on left side and Thor on right side of :, but mpirun choked on the comman line.&lt;/P&gt;

&lt;P&gt;(I am a noob at this)&lt;/P&gt;

&lt;P&gt;Jim Dempsey&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sat, 17 Sep 2016 22:21:00 GMT</pubDate>
    <dc:creator>jimdempseyatthecove</dc:creator>
    <dc:date>2016-09-17T22:21:00Z</dc:date>
    <item>
      <title>MPI Rank placement</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/MPI-Rank-placement/m-p/1080375#M4871</link>
      <description>&lt;P&gt;I am experimenting with MPI (world) across different systems. One system is a Xeon Phi KNL (64 cores, 256 logical processors) called KNL, and the other system is an E5-2620v2 (6 cores, 12 logical processors) called Thor.&lt;/P&gt;

&lt;P&gt;What I intended to do is do is to partition the KNL into 2 ranks, and then run the 3rd rank on the E5-2620v2.&lt;/P&gt;

&lt;P&gt;mpirun -n 3 -ppn 1 -hosts KNL,KNL,Thor program arg arg arg&lt;/P&gt;

&lt;P&gt;This launches 2 ranks on KNL and 1 rank on Thor as expected&lt;/P&gt;

&lt;P&gt;So far, so good.&lt;/P&gt;

&lt;P&gt;Rank 0 was located on KNL&lt;BR /&gt;
	Rank 1 on Thor&lt;BR /&gt;
	Rank 2 on KNL&lt;/P&gt;

&lt;P&gt;Aren't the nodes associated in the -hosts order?&lt;/P&gt;

&lt;P&gt;What is the recommended way to control rank placement?&lt;/P&gt;

&lt;P&gt;When I try 8 on KNL and 1 on Thor, the distribution is quite goofy. (likely my issue)&lt;/P&gt;

&lt;P&gt;I tried using the : separator to sequester the KNL on left side and Thor on right side of :, but mpirun choked on the comman line.&lt;/P&gt;

&lt;P&gt;(I am a noob at this)&lt;/P&gt;

&lt;P&gt;Jim Dempsey&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 17 Sep 2016 22:21:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/MPI-Rank-placement/m-p/1080375#M4871</guid>
      <dc:creator>jimdempseyatthecove</dc:creator>
      <dc:date>2016-09-17T22:21:00Z</dc:date>
    </item>
    <item>
      <title>Using</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/MPI-Rank-placement/m-p/1080376#M4872</link>
      <description>&lt;P&gt;Using&lt;/P&gt;

&lt;P&gt;mpirun -n 8 -hosts KNL program args : -n 1 -hosts Thor program args&lt;/P&gt;

&lt;P&gt;seems to work. Getting a good grasp on the nuances of mpirun will require some time.&lt;/P&gt;

&lt;P&gt;Jim Demspey&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 17 Sep 2016 22:59:53 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/MPI-Rank-placement/m-p/1080376#M4872</guid>
      <dc:creator>jimdempseyatthecove</dc:creator>
      <dc:date>2016-09-17T22:59:53Z</dc:date>
    </item>
    <item>
      <title>Hey Jim, do you by any change</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/MPI-Rank-placement/m-p/1080377#M4873</link>
      <description>&lt;P&gt;Hey Jim, do you by any change have insight into how the ranks are placed inside the KNL node? As in, will it try to place one rank per physical core or first populate all logical cores of a physical core or is it completely random?&lt;/P&gt;

&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Tue, 17 Jan 2017 14:58:45 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/MPI-Rank-placement/m-p/1080377#M4873</guid>
      <dc:creator>Paulius_V_</dc:creator>
      <dc:date>2017-01-17T14:58:45Z</dc:date>
    </item>
    <item>
      <title>The application run on KNL</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/MPI-Rank-placement/m-p/1080378#M4874</link>
      <description>&lt;P&gt;The application run on KNL (and Xeon host) is both MPI and OpenMP. The BIOS configuration on KNL was set to present 4 NUMA compute&amp;nbsp;nodes with MCDRAM set as cache (each node having its own LLC of 1/4 of MCDRAM). Under this configuration, the default MPI distribution on the KNL would be sparse resulting in 2 cores/ranks per NUMA node on the KNL running the MPI ranks, then each rank using OpenMP to run 32 threads (OpenMP 4.0 tasks). The Xeon Host (Thor) launched 1 process, then ran 12 OpenMP threads within that rank.&lt;/P&gt;

&lt;P&gt;Jim Dempsey&lt;/P&gt;</description>
      <pubDate>Tue, 17 Jan 2017 17:08:34 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/MPI-Rank-placement/m-p/1080378#M4874</guid>
      <dc:creator>jimdempseyatthecove</dc:creator>
      <dc:date>2017-01-17T17:08:34Z</dc:date>
    </item>
  </channel>
</rss>

