<?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 program intermittently crashes in Intel® MPI Library</title>
    <link>https://community.intel.com/t5/Intel-MPI-Library/MPI-program-intermittently-crashes/m-p/1656043#M12032</link>
    <description>&lt;P&gt;Below I've provided the MPI part of the program, the debugging information I get when the program fails, and the versions of Visual Studio and the one API and HPC toolkits I'm using.&amp;nbsp; A sincere thanks in advance for any help.&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;BR /&gt;do k=1,5000&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;if(proc.eq.0)then&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp;do i=2,nprocs&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;call MPI_SEND(xp(i,1:d),d,MPI_real,i-1,1,MPI_COMM_WORLD,ierr)&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; enddo&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;else&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;call MPI_recv(xp(1,1:d),d,MPI_real,0,1,MPI_COMM_WORLD, MPI_STATUS_IGNORE,ierr)&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;endif&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;call call_hydrus(proc,xp(1,1:d),d,ndata,convergevec(1),sse(1))&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;If(proc.ne.0)then&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp;call MPI_SEND(sse(1),1,MPI_real,0,2,MPI_COMM_WORLD,ierr)&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;else&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;do i=2,nprocs&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; call MPI_recv(sse(i),1,MPI_real,i-1,2,MPI_COMM_WORLD, MPI_STATUS_IGNORE,ierr)&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp;enddo&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;endif&lt;BR /&gt;enddo&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;!****************************************************************************************&lt;BR /&gt;subroutine call_hydrus(proc,pars,d,ndata,convergeq,sse)&lt;BR /&gt;implicit none&lt;BR /&gt;integer :: ndata,d,i,proc&lt;BR /&gt;real :: pars(d),sse&lt;BR /&gt;logical :: convergeq&lt;BR /&gt;CHARACTER(100) :: filenumberstring&lt;/P&gt;&lt;P&gt;write(filenumberstring, '(I5)') proc&lt;/P&gt;&lt;P&gt;open(30,file=Trim("selector"//trim(adjustl(filenumberstring))//".in"),status='old',action='read')&lt;BR /&gt;open(32,file=Trim("profile"//trim(adjustl(filenumberstring))//".dat"),status='old',action='read')&lt;BR /&gt;open(31,file=Trim("ATMOSPH"//trim(adjustl(filenumberstring))//".in"),status='old',action='read')&lt;BR /&gt;open(666,file=Trim("tdr"//trim(adjustl(filenumberstring))//".in"),status='old',action='read')&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;!this subroutine calls several other subroutines written in fortran 77&lt;BR /&gt;call hydrus(proc,pars,sse,convergeq,ndata)&lt;/P&gt;&lt;P&gt;close(30)&lt;BR /&gt;close(31)&lt;BR /&gt;close(32)&lt;BR /&gt;close(666)&lt;BR /&gt;end&lt;BR /&gt;!****************************************************************************************&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;'mpiexec.exe' (Win32): Loaded 'C:\Program Files (x86)\Intel\oneAPI\mpi\2021.8.0\bin\mpiexec.exe'.&lt;BR /&gt;'mpiexec.exe' (Win32): Loaded 'C:\Windows\System32\ntdll.dll'.&lt;BR /&gt;'mpiexec.exe' (Win32): Loaded 'C:\Windows\System32\kernel32.dll'.&lt;BR /&gt;'mpiexec.exe' (Win32): Loaded 'C:\Windows\System32\KernelBase.dll'.&lt;BR /&gt;'mpiexec.exe' (Win32): Loaded 'C:\Windows\System32\ws2_32.dll'.&lt;BR /&gt;'mpiexec.exe' (Win32): Loaded 'C:\Windows\System32\rpcrt4.dll'.&lt;BR /&gt;'mpiexec.exe' (Win32): Loaded 'C:\Windows\System32\crypt32.dll'.&lt;BR /&gt;'mpiexec.exe' (Win32): Loaded 'C:\Windows\System32\ucrtbase.dll'.&lt;BR /&gt;'mpiexec.exe' (Win32): Loaded 'C:\Windows\System32\bcrypt.dll'.&lt;BR /&gt;'mpiexec.exe' (Win32): Loaded 'C:\Windows\System32\secur32.dll'.&lt;BR /&gt;'mpiexec.exe' (Win32): Loaded 'C:\Windows\System32\mswsock.dll'.&lt;BR /&gt;'mpiexec.exe' (Win32): Loaded 'C:\Windows\System32\advapi32.dll'.&lt;BR /&gt;'mpiexec.exe' (Win32): Loaded 'C:\Windows\System32\mpr.dll'.&lt;BR /&gt;'mpiexec.exe' (Win32): Loaded 'C:\Windows\System32\msvcrt.dll'.&lt;BR /&gt;'mpiexec.exe' (Win32): Loaded 'C:\Windows\System32\sechost.dll'.&lt;BR /&gt;'mpiexec.exe' (Win32): Loaded 'C:\Windows\System32\IPHLPAPI.DLL'.&lt;BR /&gt;'mpiexec.exe' (Win32): Loaded 'C:\Windows\System32\ntdsapi.dll'.&lt;BR /&gt;'mpiexec.exe' (Win32): Loaded 'C:\Windows\System32\sspicli.dll'.&lt;BR /&gt;'mpiexec.exe' (Win32): Loaded 'C:\Windows\System32\dsparse.dll'.&lt;BR /&gt;'mpiexec.exe' (Win32): Loaded 'C:\Windows\System32\NapiNSP.dll'.&lt;BR /&gt;'mpiexec.exe' (Win32): Loaded 'C:\Windows\System32\bcryptprimitives.dll'.&lt;BR /&gt;'mpiexec.exe' (Win32): Loaded 'C:\Windows\System32\pnrpnsp.dll'.&lt;BR /&gt;'mpiexec.exe' (Win32): Loaded 'C:\Windows\System32\dnsapi.dll'.&lt;BR /&gt;'mpiexec.exe' (Win32): Loaded 'C:\Windows\System32\nsi.dll'.&lt;BR /&gt;'mpiexec.exe' (Win32): Loaded 'C:\Windows\System32\winrnr.dll'.&lt;BR /&gt;'mpiexec.exe' (Win32): Loaded 'C:\Windows\System32\wshbth.dll'.&lt;BR /&gt;'mpiexec.exe' (Win32): Loaded 'C:\Windows\System32\nlansp_c.dll'.&lt;BR /&gt;'mpiexec.exe' (Win32): Loaded 'C:\Windows\System32\msvcp_win.dll'.&lt;BR /&gt;onecore\net\netprofiles\service\src\nsp\dll\namespaceserviceprovider.cpp(613)\nlansp_c.dll!00007FFB645AF6CD: (caller: 00007FFB7131ACF6) LogHr(1) tid(afe0) 8007277C No such service is known. The service cannot be found in the specified name space.&lt;BR /&gt;onecore\net\netprofiles\service\src\nsp\dll\namespaceserviceprovider.cpp(613)\nlansp_c.dll!00007FFB645AF6CD: (caller: 00007FFB7131ACF6) LogHr(2) tid(afe0) 8007277C No such service is known. The service cannot be found in the specified name space.&lt;BR /&gt;onecore\net\netprofiles\service\src\nsp\dll\namespaceserviceprovider.cpp(613)\nlansp_c.dll!00007FFB645AF6CD: (caller: 00007FFB7131ACF6) LogHr(3) tid(afe0) 8007277C No such service is known. The service cannot be found in the specified name space.&lt;BR /&gt;'mpiexec.exe' (Win32): Unloaded 'C:\Windows\System32\NapiNSP.dll'&lt;BR /&gt;'mpiexec.exe' (Win32): Unloaded 'C:\Windows\System32\pnrpnsp.dll'&lt;BR /&gt;'mpiexec.exe' (Win32): Unloaded 'C:\Windows\System32\winrnr.dll'&lt;BR /&gt;'mpiexec.exe' (Win32): Unloaded 'C:\Windows\System32\wshbth.dll'&lt;BR /&gt;'mpiexec.exe' (Win32): Unloaded 'C:\Windows\System32\msvcp_win.dll'&lt;BR /&gt;'mpiexec.exe' (Win32): Unloaded 'C:\Windows\System32\nlansp_c.dll'&lt;BR /&gt;The thread 0xb55c has exited with code -1 (0xffffffff).&lt;BR /&gt;The thread 0x93f8 has exited with code -1 (0xffffffff).&lt;BR /&gt;The thread 0x6e4c has exited with code -1 (0xffffffff).&lt;BR /&gt;The thread 0x8b44 has exited with code -1 (0xffffffff).&lt;BR /&gt;The thread 0x9fc8 has exited with code -1 (0xffffffff).&lt;BR /&gt;The program '[42104] mpiexec.exe' has exited with code -1 (0xffffffff).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Microsoft Visual Studio Community 2019&lt;BR /&gt;Version 16.11.17&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Product: Intel® oneAPI Base &amp;amp; HPC Toolkit (Single-Node)&lt;BR /&gt;Serial Number 1: &lt;STRONG&gt;C6VB-4H4H55R2 &lt;/STRONG&gt;&lt;BR /&gt;SKU: &lt;STRONG&gt;ABS999OSGE01X1Z - Intel® oneAPI Base &amp;amp; HPC Toolkit (Single-Node) - Named-user Commercial (ESD)&lt;/STRONG&gt;&lt;BR /&gt;Vendor: Climb Channel Solutions&lt;BR /&gt;Version: 2022&lt;BR /&gt;Quantity: 1&lt;BR /&gt;Support Period End: 2023-02-06&lt;BR /&gt;Order Number: IRC:414043 T20925690101 X04757840101&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 10 Jan 2025 21:15:40 GMT</pubDate>
    <dc:creator>Matt_Rinella</dc:creator>
    <dc:date>2025-01-10T21:15:40Z</dc:date>
    <item>
      <title>MPI program intermittently crashes</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/MPI-program-intermittently-crashes/m-p/1656043#M12032</link>
      <description>&lt;P&gt;Below I've provided the MPI part of the program, the debugging information I get when the program fails, and the versions of Visual Studio and the one API and HPC toolkits I'm using.&amp;nbsp; A sincere thanks in advance for any help.&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;BR /&gt;do k=1,5000&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;if(proc.eq.0)then&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp;do i=2,nprocs&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;call MPI_SEND(xp(i,1:d),d,MPI_real,i-1,1,MPI_COMM_WORLD,ierr)&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; enddo&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;else&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;call MPI_recv(xp(1,1:d),d,MPI_real,0,1,MPI_COMM_WORLD, MPI_STATUS_IGNORE,ierr)&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;endif&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;call call_hydrus(proc,xp(1,1:d),d,ndata,convergevec(1),sse(1))&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;If(proc.ne.0)then&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp;call MPI_SEND(sse(1),1,MPI_real,0,2,MPI_COMM_WORLD,ierr)&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;else&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;do i=2,nprocs&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; call MPI_recv(sse(i),1,MPI_real,i-1,2,MPI_COMM_WORLD, MPI_STATUS_IGNORE,ierr)&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp;enddo&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;endif&lt;BR /&gt;enddo&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;!****************************************************************************************&lt;BR /&gt;subroutine call_hydrus(proc,pars,d,ndata,convergeq,sse)&lt;BR /&gt;implicit none&lt;BR /&gt;integer :: ndata,d,i,proc&lt;BR /&gt;real :: pars(d),sse&lt;BR /&gt;logical :: convergeq&lt;BR /&gt;CHARACTER(100) :: filenumberstring&lt;/P&gt;&lt;P&gt;write(filenumberstring, '(I5)') proc&lt;/P&gt;&lt;P&gt;open(30,file=Trim("selector"//trim(adjustl(filenumberstring))//".in"),status='old',action='read')&lt;BR /&gt;open(32,file=Trim("profile"//trim(adjustl(filenumberstring))//".dat"),status='old',action='read')&lt;BR /&gt;open(31,file=Trim("ATMOSPH"//trim(adjustl(filenumberstring))//".in"),status='old',action='read')&lt;BR /&gt;open(666,file=Trim("tdr"//trim(adjustl(filenumberstring))//".in"),status='old',action='read')&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;!this subroutine calls several other subroutines written in fortran 77&lt;BR /&gt;call hydrus(proc,pars,sse,convergeq,ndata)&lt;/P&gt;&lt;P&gt;close(30)&lt;BR /&gt;close(31)&lt;BR /&gt;close(32)&lt;BR /&gt;close(666)&lt;BR /&gt;end&lt;BR /&gt;!****************************************************************************************&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;'mpiexec.exe' (Win32): Loaded 'C:\Program Files (x86)\Intel\oneAPI\mpi\2021.8.0\bin\mpiexec.exe'.&lt;BR /&gt;'mpiexec.exe' (Win32): Loaded 'C:\Windows\System32\ntdll.dll'.&lt;BR /&gt;'mpiexec.exe' (Win32): Loaded 'C:\Windows\System32\kernel32.dll'.&lt;BR /&gt;'mpiexec.exe' (Win32): Loaded 'C:\Windows\System32\KernelBase.dll'.&lt;BR /&gt;'mpiexec.exe' (Win32): Loaded 'C:\Windows\System32\ws2_32.dll'.&lt;BR /&gt;'mpiexec.exe' (Win32): Loaded 'C:\Windows\System32\rpcrt4.dll'.&lt;BR /&gt;'mpiexec.exe' (Win32): Loaded 'C:\Windows\System32\crypt32.dll'.&lt;BR /&gt;'mpiexec.exe' (Win32): Loaded 'C:\Windows\System32\ucrtbase.dll'.&lt;BR /&gt;'mpiexec.exe' (Win32): Loaded 'C:\Windows\System32\bcrypt.dll'.&lt;BR /&gt;'mpiexec.exe' (Win32): Loaded 'C:\Windows\System32\secur32.dll'.&lt;BR /&gt;'mpiexec.exe' (Win32): Loaded 'C:\Windows\System32\mswsock.dll'.&lt;BR /&gt;'mpiexec.exe' (Win32): Loaded 'C:\Windows\System32\advapi32.dll'.&lt;BR /&gt;'mpiexec.exe' (Win32): Loaded 'C:\Windows\System32\mpr.dll'.&lt;BR /&gt;'mpiexec.exe' (Win32): Loaded 'C:\Windows\System32\msvcrt.dll'.&lt;BR /&gt;'mpiexec.exe' (Win32): Loaded 'C:\Windows\System32\sechost.dll'.&lt;BR /&gt;'mpiexec.exe' (Win32): Loaded 'C:\Windows\System32\IPHLPAPI.DLL'.&lt;BR /&gt;'mpiexec.exe' (Win32): Loaded 'C:\Windows\System32\ntdsapi.dll'.&lt;BR /&gt;'mpiexec.exe' (Win32): Loaded 'C:\Windows\System32\sspicli.dll'.&lt;BR /&gt;'mpiexec.exe' (Win32): Loaded 'C:\Windows\System32\dsparse.dll'.&lt;BR /&gt;'mpiexec.exe' (Win32): Loaded 'C:\Windows\System32\NapiNSP.dll'.&lt;BR /&gt;'mpiexec.exe' (Win32): Loaded 'C:\Windows\System32\bcryptprimitives.dll'.&lt;BR /&gt;'mpiexec.exe' (Win32): Loaded 'C:\Windows\System32\pnrpnsp.dll'.&lt;BR /&gt;'mpiexec.exe' (Win32): Loaded 'C:\Windows\System32\dnsapi.dll'.&lt;BR /&gt;'mpiexec.exe' (Win32): Loaded 'C:\Windows\System32\nsi.dll'.&lt;BR /&gt;'mpiexec.exe' (Win32): Loaded 'C:\Windows\System32\winrnr.dll'.&lt;BR /&gt;'mpiexec.exe' (Win32): Loaded 'C:\Windows\System32\wshbth.dll'.&lt;BR /&gt;'mpiexec.exe' (Win32): Loaded 'C:\Windows\System32\nlansp_c.dll'.&lt;BR /&gt;'mpiexec.exe' (Win32): Loaded 'C:\Windows\System32\msvcp_win.dll'.&lt;BR /&gt;onecore\net\netprofiles\service\src\nsp\dll\namespaceserviceprovider.cpp(613)\nlansp_c.dll!00007FFB645AF6CD: (caller: 00007FFB7131ACF6) LogHr(1) tid(afe0) 8007277C No such service is known. The service cannot be found in the specified name space.&lt;BR /&gt;onecore\net\netprofiles\service\src\nsp\dll\namespaceserviceprovider.cpp(613)\nlansp_c.dll!00007FFB645AF6CD: (caller: 00007FFB7131ACF6) LogHr(2) tid(afe0) 8007277C No such service is known. The service cannot be found in the specified name space.&lt;BR /&gt;onecore\net\netprofiles\service\src\nsp\dll\namespaceserviceprovider.cpp(613)\nlansp_c.dll!00007FFB645AF6CD: (caller: 00007FFB7131ACF6) LogHr(3) tid(afe0) 8007277C No such service is known. The service cannot be found in the specified name space.&lt;BR /&gt;'mpiexec.exe' (Win32): Unloaded 'C:\Windows\System32\NapiNSP.dll'&lt;BR /&gt;'mpiexec.exe' (Win32): Unloaded 'C:\Windows\System32\pnrpnsp.dll'&lt;BR /&gt;'mpiexec.exe' (Win32): Unloaded 'C:\Windows\System32\winrnr.dll'&lt;BR /&gt;'mpiexec.exe' (Win32): Unloaded 'C:\Windows\System32\wshbth.dll'&lt;BR /&gt;'mpiexec.exe' (Win32): Unloaded 'C:\Windows\System32\msvcp_win.dll'&lt;BR /&gt;'mpiexec.exe' (Win32): Unloaded 'C:\Windows\System32\nlansp_c.dll'&lt;BR /&gt;The thread 0xb55c has exited with code -1 (0xffffffff).&lt;BR /&gt;The thread 0x93f8 has exited with code -1 (0xffffffff).&lt;BR /&gt;The thread 0x6e4c has exited with code -1 (0xffffffff).&lt;BR /&gt;The thread 0x8b44 has exited with code -1 (0xffffffff).&lt;BR /&gt;The thread 0x9fc8 has exited with code -1 (0xffffffff).&lt;BR /&gt;The program '[42104] mpiexec.exe' has exited with code -1 (0xffffffff).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Microsoft Visual Studio Community 2019&lt;BR /&gt;Version 16.11.17&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Product: Intel® oneAPI Base &amp;amp; HPC Toolkit (Single-Node)&lt;BR /&gt;Serial Number 1: &lt;STRONG&gt;C6VB-4H4H55R2 &lt;/STRONG&gt;&lt;BR /&gt;SKU: &lt;STRONG&gt;ABS999OSGE01X1Z - Intel® oneAPI Base &amp;amp; HPC Toolkit (Single-Node) - Named-user Commercial (ESD)&lt;/STRONG&gt;&lt;BR /&gt;Vendor: Climb Channel Solutions&lt;BR /&gt;Version: 2022&lt;BR /&gt;Quantity: 1&lt;BR /&gt;Support Period End: 2023-02-06&lt;BR /&gt;Order Number: IRC:414043 T20925690101 X04757840101&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 10 Jan 2025 21:15:40 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/MPI-program-intermittently-crashes/m-p/1656043#M12032</guid>
      <dc:creator>Matt_Rinella</dc:creator>
      <dc:date>2025-01-10T21:15:40Z</dc:date>
    </item>
    <item>
      <title>Re: MPI program intermittently crashes</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/MPI-program-intermittently-crashes/m-p/1658643#M12039</link>
      <description>&lt;P&gt;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/272251"&gt;@Matt_Rinella&lt;/a&gt;&amp;nbsp;please consider contacting priority support to share more details on your code and the failure. With the information you provided here, we are not able to help you.&lt;/P&gt;</description>
      <pubDate>Mon, 20 Jan 2025 10:12:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/MPI-program-intermittently-crashes/m-p/1658643#M12039</guid>
      <dc:creator>TobiasK</dc:creator>
      <dc:date>2025-01-20T10:12:00Z</dc:date>
    </item>
  </channel>
</rss>

