<?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 Efficient Core Selection Slowing Down Analysis in Intel® MPI Library</title>
    <link>https://community.intel.com/t5/Intel-MPI-Library/Efficient-Core-Selection-Slowing-Down-Analysis/m-p/1725185#M12247</link>
    <description>&lt;P&gt;I run distributed FEA analyses and have upgraded to an I9 13900 which has both P and E cores.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There are 8 P cores and 16 E cores. When I run my analysis, it selects CPUs no. 0,4,8,12,16,20, 24 and 28 as seen in the task manager. It is my understanding that this is a mix of P and E cores. (P cores being 0-16, E being 17-31)&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Due to the nature of the analysis, the time is controlled by the&amp;nbsp;&lt;EM&gt;slowest core.&amp;nbsp;&lt;/EM&gt;If an E core is selected, this destroys the analysis speed. My analysis speeds are currently &lt;STRONG&gt;slower&lt;/STRONG&gt; than my 2017 processor I upgraded from.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How can I force my analysis to run on the P cores automatically without manually changing the affinity every time?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Apologies if this is the wrong post location.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ed&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 06 Nov 2025 11:16:08 GMT</pubDate>
    <dc:creator>EG4</dc:creator>
    <dc:date>2025-11-06T11:16:08Z</dc:date>
    <item>
      <title>Efficient Core Selection Slowing Down Analysis</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/Efficient-Core-Selection-Slowing-Down-Analysis/m-p/1725185#M12247</link>
      <description>&lt;P&gt;I run distributed FEA analyses and have upgraded to an I9 13900 which has both P and E cores.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There are 8 P cores and 16 E cores. When I run my analysis, it selects CPUs no. 0,4,8,12,16,20, 24 and 28 as seen in the task manager. It is my understanding that this is a mix of P and E cores. (P cores being 0-16, E being 17-31)&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Due to the nature of the analysis, the time is controlled by the&amp;nbsp;&lt;EM&gt;slowest core.&amp;nbsp;&lt;/EM&gt;If an E core is selected, this destroys the analysis speed. My analysis speeds are currently &lt;STRONG&gt;slower&lt;/STRONG&gt; than my 2017 processor I upgraded from.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How can I force my analysis to run on the P cores automatically without manually changing the affinity every time?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Apologies if this is the wrong post location.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ed&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Nov 2025 11:16:08 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/Efficient-Core-Selection-Slowing-Down-Analysis/m-p/1725185#M12247</guid>
      <dc:creator>EG4</dc:creator>
      <dc:date>2025-11-06T11:16:08Z</dc:date>
    </item>
    <item>
      <title>Re: Efficient Core Selection Slowing Down Analysis</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/Efficient-Core-Selection-Slowing-Down-Analysis/m-p/1725207#M12248</link>
      <description>&lt;P&gt;In Intel MPI 2021.15 and newer you can exclude the cores on heterogenous core processors you don't want your MPI application to use:&lt;/P&gt;&lt;P&gt;For example, to exclude the e-cores, you can do:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;set I_MPI_PIN=1&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;set I_MPI_PIN_PROCESSOR_EXCLUDE_LIST=16-31&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;In the latest Intel MPI 2021.17 you can specify the cores type you want to exclude:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;set I_MPI_PIN=1&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;set I_MPI_PIN_PROCESSOR_EXCLUDE_LIST=ecores&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;References:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;A href="https://www.intel.com/content/www/us/en/docs/mpi-library/developer-reference-linux/2021-16/environment-variables-for-process-pinning.html" target="_blank" rel="noopener"&gt;https://www.intel.com/content/www/us/en/docs/mpi-library/developer-reference-linux/2021-16/environment-variables-for-process-pinning.html&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;&lt;A href="https://www.intel.com/content/www/us/en/developer/articles/release-notes/mpi-library-release-notes.html" target="_blank" rel="noopener"&gt;https://www.intel.com/content/www/us/en/developer/articles/release-notes/mpi-library-release-notes.html&lt;/A&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sergey&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Nov 2025 15:22:48 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/Efficient-Core-Selection-Slowing-Down-Analysis/m-p/1725207#M12248</guid>
      <dc:creator>Sergey_K_Intel3</dc:creator>
      <dc:date>2025-11-06T15:22:48Z</dc:date>
    </item>
  </channel>
</rss>

