<?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 Re:How use processor pinning  I_MPI_PIN_PROCESSOR_LIST shift preoffset in Intel® MPI Library</title>
    <link>https://community.intel.com/t5/Intel-MPI-Library/How-use-processor-pinning-I-MPI-PIN-PROCESSOR-LIST-shift/m-p/1255041#M7761</link>
    <description>&lt;P&gt;This appears to be correct pinning.  Using allcores will pin processes only by physical core, not by logical core.  The cpuinfo output shows that you have Hyperthreading enabled, thus you have two logical cores per physical core.  The preoffset of 2 specifies that the first rank will be moved by 2 cores, hence starting on core 2 instead of core 0.  The shift of 3 says to move three cores for every new rank.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;By using allcores, you are excluding cores numbered 16-31.  Once you reach the end of your cores, pinning will cycle back to the start.  We will shift to avoid pinning ranks to the same cores in most scenarios, but once all available cores have been used we will start oversubscribing cores.  If you want to oversubscribe, you can explicitly set ranks to the same core (e.g. I_MPI_PIN_PROCESSOR_LIST=1,1...)&lt;/P&gt;&lt;BR /&gt;</description>
    <pubDate>Wed, 10 Feb 2021 21:21:54 GMT</pubDate>
    <dc:creator>James_T_Intel</dc:creator>
    <dc:date>2021-02-10T21:21:54Z</dc:date>
    <item>
      <title>How use processor pinning  I_MPI_PIN_PROCESSOR_LIST shift preoffset</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/How-use-processor-pinning-I-MPI-PIN-PROCESSOR-LIST-shift/m-p/1247546#M7643</link>
      <description>&lt;P&gt;mpiexec -genv I_MPI_DEBUG=4 -genv I_MPI_PIN_PROCESSOR_LIST=allcores:shift=3,preoffset=2 -n 24 ./bt-mz.C.x&lt;/P&gt;
&lt;P&gt;result:&lt;/P&gt;
&lt;P&gt;[0] MPI startup(): Intel(R) MPI Library, Version 2021.1 Build 20201112 (id: b9c9d2fc5)&lt;BR /&gt;[0] MPI startup(): Copyright (C) 2003-2020 Intel Corporation. All rights reserved.&lt;BR /&gt;[0] MPI startup(): library kind: release&lt;BR /&gt;[0] MPI startup(): libfabric version: 1.11.0-impi&lt;BR /&gt;[0] MPI startup(): libfabric provider: tcp;ofi_rxm&lt;BR /&gt;[0] MPI startup(): Rank Pid Node name Pin cpu&lt;BR /&gt;[0] MPI startup(): 0 389130 node1 2&lt;BR /&gt;[0] MPI startup(): 1 389131 node1 5&lt;BR /&gt;[0] MPI startup(): 2 389132 node1 8&lt;BR /&gt;[0] MPI startup(): 3 389133 node1 11&lt;BR /&gt;[0] MPI startup(): 4 389134 node1 14&lt;BR /&gt;[0] MPI startup(): 5 389135 node1 1&lt;BR /&gt;[0] MPI startup(): 6 389136 node1 3&lt;BR /&gt;[0] MPI startup(): 7 389137 node1 6&lt;BR /&gt;[0] MPI startup(): 8 389138 node1 9&lt;BR /&gt;[0] MPI startup(): 9 389139 node1 12&lt;BR /&gt;[0] MPI startup(): 10 389140 node1 15&lt;BR /&gt;[0] MPI startup(): 11 389141 node1 4&lt;BR /&gt;[0] MPI startup(): 12 389142 node1 7&lt;BR /&gt;[0] MPI startup(): 13 389143 node1 10&lt;BR /&gt;[0] MPI startup(): 14 389144 node1 13&lt;BR /&gt;[0] MPI startup(): 15 389145 node1 0&lt;BR /&gt;[0] MPI startup(): 16 389146 node1 2&lt;BR /&gt;[0] MPI startup(): 17 389147 node1 5&lt;BR /&gt;[0] MPI startup(): 18 389148 node1 8&lt;BR /&gt;[0] MPI startup(): 19 389149 node1 11&lt;BR /&gt;[0] MPI startup(): 20 389150 node1 14&lt;BR /&gt;[0] MPI startup(): 21 389151 node1 1&lt;BR /&gt;[0] MPI startup(): 22 389152 node1 3&lt;BR /&gt;[0] MPI startup(): 23 389153 node1 6&lt;/P&gt;
&lt;P&gt;I want to know why the binding number is like this. Is there any formula?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 19 Jan 2021 03:02:58 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/How-use-processor-pinning-I-MPI-PIN-PROCESSOR-LIST-shift/m-p/1247546#M7643</guid>
      <dc:creator>侯玉山</dc:creator>
      <dc:date>2021-01-19T03:02:58Z</dc:date>
    </item>
    <item>
      <title>Re:How use processor pinning  I_MPI_PIN_PROCESSOR_LIST shift preoffset</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/How-use-processor-pinning-I-MPI-PIN-PROCESSOR-LIST-shift/m-p/1248504#M7663</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;As per the specified options, you can observe a shift of 3 and an offset of 2 in the core pinning. The options roughly translate to 2+3n.&lt;/P&gt;&lt;P&gt;Have found any discrepancies in the core pinning?&lt;/P&gt;&lt;P&gt;How many cores are there? Could you provide us the output of &lt;I&gt;cpuinfo -g&lt;/I&gt;?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Also following is the syntax of I_MPI_PIN_PROCESSOR_LIST,&lt;/P&gt;&lt;P&gt;I_MPI_PIN_PROCESSOR_LIST=[&amp;lt;procset&amp;gt;][:[grain=&amp;lt;grain&amp;gt;][,shift=&amp;lt;shift&amp;gt;][,preoffset=&amp;lt;preoffset&amp;gt;][,postoffset=&amp;lt;postoffset&amp;gt;]&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;If grain is not being specified, then the syntax should be,&amp;nbsp;&lt;/P&gt;&lt;P&gt;I_MPI_PIN_PROCESSOR_LIST=allcores:,shift=3,preoffset=2&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;However, with both variants, the pinning behavior doesn’t change.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Prasanth&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 21 Jan 2021 09:14:43 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/How-use-processor-pinning-I-MPI-PIN-PROCESSOR-LIST-shift/m-p/1248504#M7663</guid>
      <dc:creator>PrasanthD_intel</dc:creator>
      <dc:date>2021-01-21T09:14:43Z</dc:date>
    </item>
    <item>
      <title>Re: Re:How use processor pinning  I_MPI_PIN_PROCESSOR_LIST shift preoffset</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/How-use-processor-pinning-I-MPI-PIN-PROCESSOR-LIST-shift/m-p/1248508#M7665</link>
      <description>&lt;P&gt;Hi First of all, thank you for your answer&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Below is information about cpuinfo：&lt;/P&gt;
&lt;P&gt;===== Processor composition =====&lt;BR /&gt;Processor name : Intel(R) Xeon(R) E5-2650 v2 &lt;BR /&gt;Packages(sockets) : 2&lt;BR /&gt;Cores : 16&lt;BR /&gt;Processors(CPUs) : 32&lt;BR /&gt;Cores per package : 8&lt;BR /&gt;Threads per core : 2&lt;/P&gt;
&lt;P&gt;===== Processor identification =====&lt;BR /&gt;Processor Thread Id. Core Id. Package Id.&lt;BR /&gt;0 0 0 0 &lt;BR /&gt;1 0 1 0 &lt;BR /&gt;2 0 2 0 &lt;BR /&gt;3 0 3 0 &lt;BR /&gt;4 0 4 0 &lt;BR /&gt;5 0 5 0 &lt;BR /&gt;6 0 6 0 &lt;BR /&gt;7 0 7 0 &lt;BR /&gt;8 0 0 1 &lt;BR /&gt;9 0 1 1 &lt;BR /&gt;10 0 2 1 &lt;BR /&gt;11 0 3 1 &lt;BR /&gt;12 0 4 1 &lt;BR /&gt;13 0 5 1 &lt;BR /&gt;14 0 6 1 &lt;BR /&gt;15 0 7 1 &lt;BR /&gt;16 1 0 0 &lt;BR /&gt;17 1 1 0 &lt;BR /&gt;18 1 2 0 &lt;BR /&gt;19 1 3 0 &lt;BR /&gt;20 1 4 0 &lt;BR /&gt;21 1 5 0 &lt;BR /&gt;22 1 6 0 &lt;BR /&gt;23 1 7 0 &lt;BR /&gt;24 1 0 1 &lt;BR /&gt;25 1 1 1 &lt;BR /&gt;26 1 2 1 &lt;BR /&gt;27 1 3 1 &lt;BR /&gt;28 1 4 1 &lt;BR /&gt;29 1 5 1 &lt;BR /&gt;30 1 6 1 &lt;BR /&gt;31 1 7 1 &lt;BR /&gt;===== Placement on packages =====&lt;BR /&gt;Package Id. Core Id. Processors&lt;BR /&gt;0 0,1,2,3,4,5,6,7 (0,16)(1,17)(2,18)(3,19)(4,20)(5,21)(6,22)(7,23)&lt;BR /&gt;1 0,1,2,3,4,5,6,7 (8,24)(9,25)(10,26)(11,27)(12,28)(13,29)(14,30)(15,31)&lt;/P&gt;
&lt;P&gt;===== Cache sharing =====&lt;BR /&gt;Cache Size Processors&lt;BR /&gt;L1 32 KB (0,16)(1,17)(2,18)(3,19)(4,20)(5,21)(6,22)(7,23)(8,24)(9,25)(10,26)(11,27)(12,28)(13,29)(14,30)(15,31)&lt;BR /&gt;L2 256 KB (0,16)(1,17)(2,18)(3,19)(4,20)(5,21)(6,22)(7,23)(8,24)(9,25)(10,26)(11,27)(12,28)(13,29)(14,30)(15,31)&lt;BR /&gt;L3 20 MB (0,1,2,3,4,5,6,7,16,17,18,19,20,21,22,23)(8,9,10,11,12,13,14,15,24,25,26,27,28,29,30,31)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Arial',sans-serif;"&gt;mpiexec -genv I_MPI_DEBUG=4 -genv I_MPI_PIN_PROCESSOR_LIST=allcores:shift=3,preoffset=2 -n 24 ./bt-mz.C.x&lt;/SPAN&gt;&lt;/P&gt;
&lt;TABLE width="672"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="43px"&gt;0,16&lt;/TD&gt;
&lt;TD width="43px"&gt;1,17&lt;/TD&gt;
&lt;TD width="43px"&gt;2,18&lt;/TD&gt;
&lt;TD width="43px"&gt;3,19&lt;/TD&gt;
&lt;TD width="43px"&gt;4,20&lt;/TD&gt;
&lt;TD width="43px"&gt;5,21&lt;/TD&gt;
&lt;TD width="43px"&gt;6,22&lt;/TD&gt;
&lt;TD width="43px"&gt;7,23&lt;/TD&gt;
&lt;TD width="43px"&gt;8,24&lt;/TD&gt;
&lt;TD width="43px"&gt;9,25&lt;/TD&gt;
&lt;TD width="53px"&gt;10,26&lt;/TD&gt;
&lt;TD width="53px"&gt;11,27&lt;/TD&gt;
&lt;TD width="53px"&gt;12,28&lt;/TD&gt;
&lt;TD width="53px"&gt;13,29&lt;/TD&gt;
&lt;TD width="53px"&gt;14,30&lt;/TD&gt;
&lt;TD width="53px"&gt;15,31&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="43px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="43px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="43px"&gt;2&lt;/TD&gt;
&lt;TD width="43px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="43px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="43px"&gt;5&lt;/TD&gt;
&lt;TD width="43px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="43px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="43px"&gt;8&lt;/TD&gt;
&lt;TD width="43px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="53px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="53px"&gt;11&lt;/TD&gt;
&lt;TD width="53px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="53px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="53px"&gt;14&lt;/TD&gt;
&lt;TD width="53px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="43px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="43px"&gt;1&lt;/TD&gt;
&lt;TD width="43px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="43px"&gt;3&lt;/TD&gt;
&lt;TD width="43px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="43px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="43px"&gt;6&lt;/TD&gt;
&lt;TD width="43px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="43px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="43px"&gt;9&lt;/TD&gt;
&lt;TD width="53px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="53px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="53px"&gt;12&lt;/TD&gt;
&lt;TD width="53px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="53px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="53px"&gt;15&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD&gt;4&lt;/TD&gt;
&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD&gt;7&lt;/TD&gt;
&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD&gt;10&lt;/TD&gt;
&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD&gt;13&lt;/TD&gt;
&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="43px"&gt;0&lt;/TD&gt;
&lt;TD width="43px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="43px"&gt;2&lt;/TD&gt;
&lt;TD width="43px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="43px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="43px"&gt;5&lt;/TD&gt;
&lt;TD width="43px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="43px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="43px"&gt;8&lt;/TD&gt;
&lt;TD width="43px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="53px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="53px"&gt;11&lt;/TD&gt;
&lt;TD width="53px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="53px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="53px"&gt;14&lt;/TD&gt;
&lt;TD width="53px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I want to know how each row is arranged, and it doesn't seem to fit my settings.&amp;nbsp;For example, the third behavior starts with 4&lt;/P&gt;</description>
      <pubDate>Thu, 21 Jan 2021 09:33:07 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/How-use-processor-pinning-I-MPI-PIN-PROCESSOR-LIST-shift/m-p/1248508#M7665</guid>
      <dc:creator>侯玉山</dc:creator>
      <dc:date>2021-01-21T09:33:07Z</dc:date>
    </item>
    <item>
      <title>Re: How use processor pinning  I_MPI_PIN_PROCESSOR_LIST shift preoffset</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/How-use-processor-pinning-I-MPI-PIN-PROCESSOR-LIST-shift/m-p/1252339#M7726</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;We are working on your thread. We have been in contact with the internal team as to why the pinning is not working as it is supposed to be.&lt;/P&gt;
&lt;P&gt;Thanks for waiting, we will get back to you soon.&lt;/P&gt;
&lt;P&gt;Regards&lt;/P&gt;
&lt;P&gt;Prasanth&lt;/P&gt;</description>
      <pubDate>Tue, 02 Feb 2021 10:57:51 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/How-use-processor-pinning-I-MPI-PIN-PROCESSOR-LIST-shift/m-p/1252339#M7726</guid>
      <dc:creator>PrasanthD_intel</dc:creator>
      <dc:date>2021-02-02T10:57:51Z</dc:date>
    </item>
    <item>
      <title>Re:How use processor pinning  I_MPI_PIN_PROCESSOR_LIST shift preoffset</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/How-use-processor-pinning-I-MPI-PIN-PROCESSOR-LIST-shift/m-p/1254867#M7760</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;I am escalating this thread to the internal team for a better explanation of the pinning behavior.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Prasanth&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 10 Feb 2021 14:24:58 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/How-use-processor-pinning-I-MPI-PIN-PROCESSOR-LIST-shift/m-p/1254867#M7760</guid>
      <dc:creator>PrasanthD_intel</dc:creator>
      <dc:date>2021-02-10T14:24:58Z</dc:date>
    </item>
    <item>
      <title>Re:How use processor pinning  I_MPI_PIN_PROCESSOR_LIST shift preoffset</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/How-use-processor-pinning-I-MPI-PIN-PROCESSOR-LIST-shift/m-p/1255041#M7761</link>
      <description>&lt;P&gt;This appears to be correct pinning.  Using allcores will pin processes only by physical core, not by logical core.  The cpuinfo output shows that you have Hyperthreading enabled, thus you have two logical cores per physical core.  The preoffset of 2 specifies that the first rank will be moved by 2 cores, hence starting on core 2 instead of core 0.  The shift of 3 says to move three cores for every new rank.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;By using allcores, you are excluding cores numbered 16-31.  Once you reach the end of your cores, pinning will cycle back to the start.  We will shift to avoid pinning ranks to the same cores in most scenarios, but once all available cores have been used we will start oversubscribing cores.  If you want to oversubscribe, you can explicitly set ranks to the same core (e.g. I_MPI_PIN_PROCESSOR_LIST=1,1...)&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 10 Feb 2021 21:21:54 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/How-use-processor-pinning-I-MPI-PIN-PROCESSOR-LIST-shift/m-p/1255041#M7761</guid>
      <dc:creator>James_T_Intel</dc:creator>
      <dc:date>2021-02-10T21:21:54Z</dc:date>
    </item>
    <item>
      <title>重新：重新：如何使用处理器固定I_MPI_PIN_PROCESSOR_LIST班次预设</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/How-use-processor-pinning-I-MPI-PIN-PROCESSOR-LIST-shift/m-p/1257438#M7804</link>
      <description>&lt;P&gt;OK, thank you for your detailed reply. According to your reply, we have basically understood the problem. thank you!&lt;/P&gt;</description>
      <pubDate>Fri, 19 Feb 2021 04:24:46 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/How-use-processor-pinning-I-MPI-PIN-PROCESSOR-LIST-shift/m-p/1257438#M7804</guid>
      <dc:creator>侯玉山</dc:creator>
      <dc:date>2021-02-19T04:24:46Z</dc:date>
    </item>
    <item>
      <title>Re:How use processor pinning  I_MPI_PIN_PROCESSOR_LIST shift preoffset</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/How-use-processor-pinning-I-MPI-PIN-PROCESSOR-LIST-shift/m-p/1263122#M7899</link>
      <description>&lt;P&gt;Intel customer support will no longer be monitoring this thread.  Any further posts will be considered community only.  For additional assistance on this topic, please post a new thread.&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 10 Mar 2021 16:49:10 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/How-use-processor-pinning-I-MPI-PIN-PROCESSOR-LIST-shift/m-p/1263122#M7899</guid>
      <dc:creator>James_T_Intel</dc:creator>
      <dc:date>2021-03-10T16:49:10Z</dc:date>
    </item>
  </channel>
</rss>

