<?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 Error with concurrent invocation of MPI_Comm_spawn and Intel MPI 19.x in Intel® MPI Library</title>
    <link>https://community.intel.com/t5/Intel-MPI-Library/Error-with-concurrent-invocation-of-MPI-Comm-spawn-and-Intel-MPI/m-p/1249320#M7678</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;The following simple program invokes MPI_Comm_spawn with maxprocs=16 independently on each rank. I have tested it and it works with Intel MPI 18.0.5 with up to 64 ranks. However, with Intel MPI 19.0.9 and more than 16 ranks, the following error occurs:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;[proxy:0:2@c161-004.frontera.tacc.utexas.edu] proxy_downstream_control_cb (../../../../../src/pm/i_hydra/proxy/proxy_cb.c:592): received unknown cmd 22&lt;BR /&gt;[proxy:0:2@c161-004.frontera.tacc.utexas.edu] HYDI_dmx_poll_wait_for_event (../../../../../src/pm/i_hydra/libhydra/demux/hydra_demux_poll.c:80): callback returned error status&lt;BR /&gt;[proxy:0:2@c161-004.frontera.tacc.utexas.edu] main (../../../../../src/pm/i_hydra/proxy/proxy.c:978): error waiting for event&lt;BR /&gt;[proxy:0:6@c161-014.frontera.tacc.utexas.edu] proxy_downstream_control_cb (../../../../../src/pm/i_hydra/proxy/proxy_cb.c:592): received unknown cmd 22&lt;BR /&gt;[proxy:0:6@c161-014.frontera.tacc.utexas.edu] HYDI_dmx_poll_wait_for_event (../../../../../src/pm/i_hydra/libhydra/demux/hydra_demux_poll.c:80): callback returned error status&lt;BR /&gt;[proxy:0:6@c161-014.frontera.tacc.utexas.edu] main (../../../../../src/pm/i_hydra/proxy/proxy.c:978): error waiting for event&lt;/P&gt;
&lt;P&gt;Any help is much appreciated!&lt;/P&gt;
&lt;LI-CODE lang="cpp"&gt;#include &amp;lt;stdio.h&amp;gt;
#include &amp;lt;string.h&amp;gt;

#include &amp;lt;mpi.h&amp;gt;

int main(int argc, char *argv[]) 
{ 
  int world_size, world_rank;
  MPI_Comm sub_comm;           /* intercommunicator */ 
  static char worker_program[100] = "/bin/bash"; 
  static char *worker_arguments[] = { "-c", "echo spawned bash child", NULL };

  MPI_Init(&amp;amp;argc, &amp;amp;argv); 
  MPI_Comm_size(MPI_COMM_WORLD, &amp;amp;world_size); 
  MPI_Comm_rank(MPI_COMM_WORLD, &amp;amp;world_rank); 

  printf("I am rank %d of %d\n", world_rank, world_size);
  fflush(stdout);

  int nprocs_per_worker = 16;

  int status;
  status = MPI_Comm_spawn(worker_program, worker_arguments,
                          nprocs_per_worker,  
                          MPI_INFO_NULL, 0, MPI_COMM_SELF, &amp;amp;sub_comm,  
                          MPI_ERRCODES_IGNORE); 
  printf("status = %d\n", status);
  fflush(stdout);
  MPI_Finalize(); 
  return 0; 
} 
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sun, 24 Jan 2021 03:28:29 GMT</pubDate>
    <dc:creator>Ivan_Raikov</dc:creator>
    <dc:date>2021-01-24T03:28:29Z</dc:date>
    <item>
      <title>Error with concurrent invocation of MPI_Comm_spawn and Intel MPI 19.x</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/Error-with-concurrent-invocation-of-MPI-Comm-spawn-and-Intel-MPI/m-p/1249320#M7678</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;The following simple program invokes MPI_Comm_spawn with maxprocs=16 independently on each rank. I have tested it and it works with Intel MPI 18.0.5 with up to 64 ranks. However, with Intel MPI 19.0.9 and more than 16 ranks, the following error occurs:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;[proxy:0:2@c161-004.frontera.tacc.utexas.edu] proxy_downstream_control_cb (../../../../../src/pm/i_hydra/proxy/proxy_cb.c:592): received unknown cmd 22&lt;BR /&gt;[proxy:0:2@c161-004.frontera.tacc.utexas.edu] HYDI_dmx_poll_wait_for_event (../../../../../src/pm/i_hydra/libhydra/demux/hydra_demux_poll.c:80): callback returned error status&lt;BR /&gt;[proxy:0:2@c161-004.frontera.tacc.utexas.edu] main (../../../../../src/pm/i_hydra/proxy/proxy.c:978): error waiting for event&lt;BR /&gt;[proxy:0:6@c161-014.frontera.tacc.utexas.edu] proxy_downstream_control_cb (../../../../../src/pm/i_hydra/proxy/proxy_cb.c:592): received unknown cmd 22&lt;BR /&gt;[proxy:0:6@c161-014.frontera.tacc.utexas.edu] HYDI_dmx_poll_wait_for_event (../../../../../src/pm/i_hydra/libhydra/demux/hydra_demux_poll.c:80): callback returned error status&lt;BR /&gt;[proxy:0:6@c161-014.frontera.tacc.utexas.edu] main (../../../../../src/pm/i_hydra/proxy/proxy.c:978): error waiting for event&lt;/P&gt;
&lt;P&gt;Any help is much appreciated!&lt;/P&gt;
&lt;LI-CODE lang="cpp"&gt;#include &amp;lt;stdio.h&amp;gt;
#include &amp;lt;string.h&amp;gt;

#include &amp;lt;mpi.h&amp;gt;

int main(int argc, char *argv[]) 
{ 
  int world_size, world_rank;
  MPI_Comm sub_comm;           /* intercommunicator */ 
  static char worker_program[100] = "/bin/bash"; 
  static char *worker_arguments[] = { "-c", "echo spawned bash child", NULL };

  MPI_Init(&amp;amp;argc, &amp;amp;argv); 
  MPI_Comm_size(MPI_COMM_WORLD, &amp;amp;world_size); 
  MPI_Comm_rank(MPI_COMM_WORLD, &amp;amp;world_rank); 

  printf("I am rank %d of %d\n", world_rank, world_size);
  fflush(stdout);

  int nprocs_per_worker = 16;

  int status;
  status = MPI_Comm_spawn(worker_program, worker_arguments,
                          nprocs_per_worker,  
                          MPI_INFO_NULL, 0, MPI_COMM_SELF, &amp;amp;sub_comm,  
                          MPI_ERRCODES_IGNORE); 
  printf("status = %d\n", status);
  fflush(stdout);
  MPI_Finalize(); 
  return 0; 
} 
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 24 Jan 2021 03:28:29 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/Error-with-concurrent-invocation-of-MPI-Comm-spawn-and-Intel-MPI/m-p/1249320#M7678</guid>
      <dc:creator>Ivan_Raikov</dc:creator>
      <dc:date>2021-01-24T03:28:29Z</dc:date>
    </item>
    <item>
      <title>Re: Error with concurrent invocation of MPI_Comm_spawn and Intel MPI 19.x</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/Error-with-concurrent-invocation-of-MPI-Comm-spawn-and-Intel-MPI/m-p/1250506#M7692</link>
      <description>&lt;P&gt;In case anyone is experiencing the same issue, I found that a possible workaround is to set I_MPI_HYDRA_BRANCH_COUNT=0. This increases the startup time when tens of ranks independently spawn large numbers of child processes, but it seems to eliminate the occurrence of the error above.&lt;/P&gt;</description>
      <pubDate>Wed, 27 Jan 2021 17:45:17 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/Error-with-concurrent-invocation-of-MPI-Comm-spawn-and-Intel-MPI/m-p/1250506#M7692</guid>
      <dc:creator>Ivan_Raikov</dc:creator>
      <dc:date>2021-01-27T17:45:17Z</dc:date>
    </item>
    <item>
      <title>Re:Error with concurrent invocation of MPI_Comm_spawn and Intel MPI 19.x</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/Error-with-concurrent-invocation-of-MPI-Comm-spawn-and-Intel-MPI/m-p/1250806#M7694</link>
      <description>&lt;P&gt;Hi Ivan,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;I have tried to reproduce the issue haven't faced any error, but the program hangs after spawning some processes.&lt;/P&gt;&lt;P&gt;I have replaced the spawned program with a sample mpi test program, and it run perfectly without any errors.&lt;/P&gt;&lt;P&gt;I will contact the internal team regarding this issue and will get back to you soon.&lt;/P&gt;&lt;P&gt;Meanwhile could you please provide us the logs after keeping I_MPI_DEBUG=10 while running your code?&lt;/P&gt;&lt;P&gt;eg: &lt;I&gt;I_MPI_DEBUG=10 mpiexec.hydra -n 20 ./spawn or export I_MPI_DEBUG=10&lt;/I&gt;&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, 28 Jan 2021 11:45:39 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/Error-with-concurrent-invocation-of-MPI-Comm-spawn-and-Intel-MPI/m-p/1250806#M7694</guid>
      <dc:creator>PrasanthD_intel</dc:creator>
      <dc:date>2021-01-28T11:45:39Z</dc:date>
    </item>
    <item>
      <title>Re: Re:Error with concurrent invocation of MPI_Comm_spawn and Intel MPI 19.x</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/Error-with-concurrent-invocation-of-MPI-Comm-spawn-and-Intel-MPI/m-p/1250831#M7695</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/45"&gt;@PrasanthD_intel&lt;/a&gt; thank you very much for your response. Apologies for the hanging test; I was trying to come up with a narrow for spawn only, and I simplified the reproducer too much. Anyway, I realized that I get the error only when -rr is specified:&lt;/P&gt;
&lt;P&gt;mpirun -rr -n 24 test_mpi_spawn&lt;/P&gt;
&lt;P&gt;(The same error occurs with mpiexec.hydra).&lt;/P&gt;
&lt;P&gt;The reason for -rr is that otherwise the spawned processes end up on the same node. Without -rr, I do not get the spawn error, but the spawned processes are not distributed across hosts. I am attaching the log when running with I_MPI_DEBUG=10. Thank you very much for your help!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Jan 2021 14:02:34 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/Error-with-concurrent-invocation-of-MPI-Comm-spawn-and-Intel-MPI/m-p/1250831#M7695</guid>
      <dc:creator>Ivan_Raikov</dc:creator>
      <dc:date>2021-01-28T14:02:34Z</dc:date>
    </item>
    <item>
      <title>Re: Re:Error with concurrent invocation of MPI_Comm_spawn and Intel MPI 19.x</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/Error-with-concurrent-invocation-of-MPI-Comm-spawn-and-Intel-MPI/m-p/1250832#M7696</link>
      <description>&lt;P&gt;Somehow the attachment did not make it, so here is the pasted log:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="none"&gt;[0] MPI startup(): Intel(R) MPI Library, Version 2019 Update 9  Build 20200923 (id: abd58e492)
[0] MPI startup(): Copyright (C) 2003-2020 Intel Corporation.  All rights reserved.
[0] MPI startup(): library kind: release
[0] MPI startup(): libfabric version: 1.10.1-impi
[0] MPI startup(): libfabric provider: mlx
I am rank 17 of 24
I am rank 3 of 24
I am rank 9 of 24
I am rank 20 of 24
I am rank 11 of 24
I am rank 18 of 24
I am rank 15 of 24
I am rank 5 of 24
I am rank 12 of 24
I am rank 7 of 24
I am rank 23 of 24
I am rank 16 of 24
I am rank 22 of 24
I am rank 21 of 24
I am rank 19 of 24
I am rank 1 of 24
[proxy:0:0@c161-153.frontera.tacc.utexas.edu] proxy_downstream_control_cb (../../../../../src/pm/i_hydra/proxy/proxy_cb.c:592): received unknown cmd 22
[proxy:0:0@c161-153.frontera.tacc.utexas.edu] HYDI_dmx_poll_wait_for_event (../../../../../src/pm/i_hydra/libhydra/demux/hydra_demux_poll.c:80): callback returned error status
[proxy:0:0@c161-153.frontera.tacc.utexas.edu] main (../../../../../src/pm/i_hydra/proxy/proxy.c:978): error waiting for event
[proxy:0:2@c161-161.frontera.tacc.utexas.edu] proxy_downstream_control_cb (../../../../../src/pm/i_hydra/proxy/proxy_cb.c:592): received unknown cmd 22
[proxy:0:2@c161-161.frontera.tacc.utexas.edu] HYDI_dmx_poll_wait_for_event (../../../../../src/pm/i_hydra/libhydra/demux/hydra_demux_poll.c:80): callback returned error status
[proxy:0:2@c161-161.frontera.tacc.utexas.edu] main (../../../../../src/pm/i_hydra/proxy/proxy.c:978): error waiting for event
[proxy:0:8@c161-173.frontera.tacc.utexas.edu] proxy_downstream_control_cb (../../../../../src/pm/i_hydra/proxy/proxy_cb.c:592): received unknown cmd 22
[proxy:0:8@c161-173.frontera.tacc.utexas.edu] HYDI_dmx_poll_wait_for_event (../../../../../src/pm/i_hydra/libhydra/demux/hydra_demux_poll.c:80): callback returned error status
[proxy:0:8@c161-173.frontera.tacc.utexas.edu] main (../../../../../src/pm/i_hydra/proxy/proxy.c:978): error waiting for event
[proxy:0:4@c161-163.frontera.tacc.utexas.edu] proxy_downstream_control_cb (../../../../../src/pm/i_hydra/proxy/proxy_cb.c:592): received unknown cmd 22
[proxy:0:4@c161-163.frontera.tacc.utexas.edu] HYDI_dmx_poll_wait_for_event (../../../../../src/pm/i_hydra/libhydra/demux/hydra_demux_poll.c:80): callback returned error status
[proxy:0:4@c161-163.frontera.tacc.utexas.edu] main (../../../../../src/pm/i_hydra/proxy/proxy.c:978): error waiting for event
[proxy:0:10@c161-181.frontera.tacc.utexas.edu] proxy_downstream_control_cb (../../../../../src/pm/i_hydra/proxy/proxy_cb.c:592): received unknown cmd 22
[proxy:0:10@c161-181.frontera.tacc.utexas.edu] HYDI_dmx_poll_wait_for_event (../../../../../src/pm/i_hydra/libhydra/demux/hydra_demux_poll.c:80): callback returned error status
[proxy:0:10@c161-181.frontera.tacc.utexas.edu] main (../../../../../src/pm/i_hydra/proxy/proxy.c:978): error waiting for event
[proxy:0:6@c161-171.frontera.tacc.utexas.edu] proxy_downstream_control_cb (../../../../../src/pm/i_hydra/proxy/proxy_cb.c:592): received unknown cmd 22
[proxy:0:6@c161-171.frontera.tacc.utexas.edu] HYDI_dmx_poll_wait_for_event (../../../../../src/pm/i_hydra/libhydra/demux/hydra_demux_poll.c:80): callback returned error status
[proxy:0:6@c161-171.frontera.tacc.utexas.edu] main (../../../../../src/pm/i_hydra/proxy/proxy.c:978): error waiting for event
[proxy:0:14@c161-191.frontera.tacc.utexas.edu] proxy_downstream_control_cb (../../../../../src/pm/i_hydra/proxy/proxy_cb.c:592): received unknown cmd 22
[proxy:0:14@c161-191.frontera.tacc.utexas.edu] HYDI_dmx_poll_wait_for_event (../../../../../src/pm/i_hydra/libhydra/demux/hydra_demux_poll.c:80): callback returned error status
[proxy:0:14@c161-191.frontera.tacc.utexas.edu] main (../../../../../src/pm/i_hydra/proxy/proxy.c:978): error waiting for event
[proxy:0:12@c161-183.frontera.tacc.utexas.edu] proxy_downstream_control_cb (../../../../../src/pm/i_hydra/proxy/proxy_cb.c:592): received unknown cmd 22
[proxy:0:12@c161-183.frontera.tacc.utexas.edu] HYDI_dmx_poll_wait_for_event (../../../../../src/pm/i_hydra/libhydra/demux/hydra_demux_poll.c:80): callback returned error status
[proxy:0:12@c161-183.frontera.tacc.utexas.edu] main (../../../../../src/pm/i_hydra/proxy/proxy.c:978): error waiting for event
srun: error: c161-161: task 1: Exited with exit code 5
srun: error: c161-153: task 0: Exited with exit code 5
srun: error: c161-173: task 4: Exited with exit code 5
srun: error: c161-163: task 2: Exited with exit code 5
srun: error: c161-181: task 5: Exited with exit code 5
srun: error: c161-191: task 7: Exited with exit code 5
srun: error: c161-171: task 3: Exited with exit code 5
srun: error: c161-183: task 6: Exited with exit code 5
I am rank 2 of 24&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 28 Jan 2021 14:04:26 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/Error-with-concurrent-invocation-of-MPI-Comm-spawn-and-Intel-MPI/m-p/1250832#M7696</guid>
      <dc:creator>Ivan_Raikov</dc:creator>
      <dc:date>2021-01-28T14:04:26Z</dc:date>
    </item>
    <item>
      <title>Re: Re:Error with concurrent invocation of MPI_Comm_spawn and Intel MPI 19.x</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/Error-with-concurrent-invocation-of-MPI-Comm-spawn-and-Intel-MPI/m-p/1250836#M7697</link>
      <description>&lt;P&gt;It looks like my post did not include the actual attachment, so here is the log:&lt;/P&gt;
&lt;LI-CODE lang="none"&gt;[0] MPI startup(): Intel(R) MPI Library, Version 2019 Update 9  Build 20200923 (id: abd58e492)
[0] MPI startup(): Copyright (C) 2003-2020 Intel Corporation.  All rights reserved.
[0] MPI startup(): library kind: release
[0] MPI startup(): libfabric version: 1.10.1-impi
[0] MPI startup(): libfabric provider: mlx
I am rank 17 of 24
I am rank 3 of 24
I am rank 9 of 24
I am rank 20 of 24
I am rank 11 of 24
I am rank 18 of 24
I am rank 15 of 24
I am rank 5 of 24
I am rank 12 of 24
I am rank 7 of 24
I am rank 23 of 24
I am rank 16 of 24
I am rank 22 of 24
I am rank 21 of 24
I am rank 19 of 24
I am rank 1 of 24
[proxy:0:0@c161-153.frontera.tacc.utexas.edu] proxy_downstream_control_cb (../../../../../src/pm/i_hydra/proxy/proxy_cb.c:592): received unknown cmd 22
[proxy:0:0@c161-153.frontera.tacc.utexas.edu] HYDI_dmx_poll_wait_for_event (../../../../../src/pm/i_hydra/libhydra/demux/hydra_demux_poll.c:80): callback returned error status
[proxy:0:0@c161-153.frontera.tacc.utexas.edu] main (../../../../../src/pm/i_hydra/proxy/proxy.c:978): error waiting for event
[proxy:0:2@c161-161.frontera.tacc.utexas.edu] proxy_downstream_control_cb (../../../../../src/pm/i_hydra/proxy/proxy_cb.c:592): received unknown cmd 22
[proxy:0:2@c161-161.frontera.tacc.utexas.edu] HYDI_dmx_poll_wait_for_event (../../../../../src/pm/i_hydra/libhydra/demux/hydra_demux_poll.c:80): callback returned error status
[proxy:0:2@c161-161.frontera.tacc.utexas.edu] main (../../../../../src/pm/i_hydra/proxy/proxy.c:978): error waiting for event
[proxy:0:8@c161-173.frontera.tacc.utexas.edu] proxy_downstream_control_cb (../../../../../src/pm/i_hydra/proxy/proxy_cb.c:592): received unknown cmd 22
[proxy:0:8@c161-173.frontera.tacc.utexas.edu] HYDI_dmx_poll_wait_for_event (../../../../../src/pm/i_hydra/libhydra/demux/hydra_demux_poll.c:80): callback returned error status
[proxy:0:8@c161-173.frontera.tacc.utexas.edu] main (../../../../../src/pm/i_hydra/proxy/proxy.c:978): error waiting for event
[proxy:0:4@c161-163.frontera.tacc.utexas.edu] proxy_downstream_control_cb (../../../../../src/pm/i_hydra/proxy/proxy_cb.c:592): received unknown cmd 22
[proxy:0:4@c161-163.frontera.tacc.utexas.edu] HYDI_dmx_poll_wait_for_event (../../../../../src/pm/i_hydra/libhydra/demux/hydra_demux_poll.c:80): callback returned error status
[proxy:0:4@c161-163.frontera.tacc.utexas.edu] main (../../../../../src/pm/i_hydra/proxy/proxy.c:978): error waiting for event
[proxy:0:10@c161-181.frontera.tacc.utexas.edu] proxy_downstream_control_cb (../../../../../src/pm/i_hydra/proxy/proxy_cb.c:592): received unknown cmd 22
[proxy:0:10@c161-181.frontera.tacc.utexas.edu] HYDI_dmx_poll_wait_for_event (../../../../../src/pm/i_hydra/libhydra/demux/hydra_demux_poll.c:80): callback returned error status
[proxy:0:10@c161-181.frontera.tacc.utexas.edu] main (../../../../../src/pm/i_hydra/proxy/proxy.c:978): error waiting for event
[proxy:0:6@c161-171.frontera.tacc.utexas.edu] proxy_downstream_control_cb (../../../../../src/pm/i_hydra/proxy/proxy_cb.c:592): received unknown cmd 22
[proxy:0:6@c161-171.frontera.tacc.utexas.edu] HYDI_dmx_poll_wait_for_event (../../../../../src/pm/i_hydra/libhydra/demux/hydra_demux_poll.c:80): callback returned error status
[proxy:0:6@c161-171.frontera.tacc.utexas.edu] main (../../../../../src/pm/i_hydra/proxy/proxy.c:978): error waiting for event
[proxy:0:14@c161-191.frontera.tacc.utexas.edu] proxy_downstream_control_cb (../../../../../src/pm/i_hydra/proxy/proxy_cb.c:592): received unknown cmd 22
[proxy:0:14@c161-191.frontera.tacc.utexas.edu] HYDI_dmx_poll_wait_for_event (../../../../../src/pm/i_hydra/libhydra/demux/hydra_demux_poll.c:80): callback returned error status
[proxy:0:14@c161-191.frontera.tacc.utexas.edu] main (../../../../../src/pm/i_hydra/proxy/proxy.c:978): error waiting for event
[proxy:0:12@c161-183.frontera.tacc.utexas.edu] proxy_downstream_control_cb (../../../../../src/pm/i_hydra/proxy/proxy_cb.c:592): received unknown cmd 22
[proxy:0:12@c161-183.frontera.tacc.utexas.edu] HYDI_dmx_poll_wait_for_event (../../../../../src/pm/i_hydra/libhydra/demux/hydra_demux_poll.c:80): callback returned error status
[proxy:0:12@c161-183.frontera.tacc.utexas.edu] main (../../../../../src/pm/i_hydra/proxy/proxy.c:978): error waiting for event
srun: error: c161-161: task 1: Exited with exit code 5
srun: error: c161-153: task 0: Exited with exit code 5
srun: error: c161-173: task 4: Exited with exit code 5
srun: error: c161-163: task 2: Exited with exit code 5
srun: error: c161-181: task 5: Exited with exit code 5
srun: error: c161-191: task 7: Exited with exit code 5
srun: error: c161-171: task 3: Exited with exit code 5
srun: error: c161-183: task 6: Exited with exit code 5
I am rank 2 of 24&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 28 Jan 2021 14:17:58 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/Error-with-concurrent-invocation-of-MPI-Comm-spawn-and-Intel-MPI/m-p/1250836#M7697</guid>
      <dc:creator>Ivan_Raikov</dc:creator>
      <dc:date>2021-01-28T14:17:58Z</dc:date>
    </item>
    <item>
      <title>Re:Error with concurrent invocation of MPI_Comm_spawn and Intel MPI 19.x</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/Error-with-concurrent-invocation-of-MPI-Comm-spawn-and-Intel-MPI/m-p/1252024#M7717</link>
      <description>&lt;P&gt;Please set FI_MLX_ENABLE_SPAWN=yes and try again.  This is needed to enable dynamic process management with the mlx provider, see &lt;A href="https://software.intel.com/content/www/us/en/develop/articles/intel-mpi-library-2019-over-libfabric.html" target="_blank"&gt;https://software.intel.com/content/www/us/en/develop/articles/intel-mpi-library-2019-over-libfabric.html&lt;/A&gt;.&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 01 Feb 2021 18:09:53 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/Error-with-concurrent-invocation-of-MPI-Comm-spawn-and-Intel-MPI/m-p/1252024#M7717</guid>
      <dc:creator>James_T_Intel</dc:creator>
      <dc:date>2021-02-01T18:09:53Z</dc:date>
    </item>
    <item>
      <title>Re:Error with concurrent invocation of MPI_Comm_spawn and Intel MPI 19.x</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/Error-with-concurrent-invocation-of-MPI-Comm-spawn-and-Intel-MPI/m-p/1278825#M8218</link>
      <description>&lt;P&gt;Due to lack of replies, this case is being closed for Intel support.  Any further replies on this thread will be considered community only.&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 04 May 2021 17:46:55 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/Error-with-concurrent-invocation-of-MPI-Comm-spawn-and-Intel-MPI/m-p/1278825#M8218</guid>
      <dc:creator>James_T_Intel</dc:creator>
      <dc:date>2021-05-04T17:46:55Z</dc:date>
    </item>
  </channel>
</rss>

