<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=us-ascii">
<META content="MSHTML 6.00.6000.16825" name=GENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=#ffffff>
<DIV dir=ltr align=left><FONT face=Arial color=#0000ff size=2><SPAN 
class=369243814-22042009>Hi,</SPAN></FONT></DIV>
<DIV dir=ltr align=left><FONT face=Arial color=#0000ff size=2><SPAN 
class=369243814-22042009>&nbsp;Did you try MPI_Comm_spawn() 
?</SPAN></FONT></DIV>
<DIV dir=ltr align=left><FONT face=Arial color=#0000ff size=2><SPAN 
class=369243814-22042009></SPAN></FONT>&nbsp;</DIV>
<DIV dir=ltr align=left><FONT face=Arial color=#0000ff size=2><SPAN 
class=369243814-22042009>Regards,</SPAN></FONT></DIV>
<DIV dir=ltr align=left><FONT face=Arial color=#0000ff size=2><SPAN 
class=369243814-22042009>Jayesh</SPAN></FONT></DIV><BR>
<DIV class=OutlookMessageHeader lang=en-us dir=ltr align=left>
<HR tabIndex=-1>
<FONT face=Tahoma size=2><B>From:</B> mpich-discuss-bounces@mcs.anl.gov 
[mailto:mpich-discuss-bounces@mcs.anl.gov] <B>On Behalf Of </B>Rod 
Cook<BR><B>Sent:</B> Wednesday, April 22, 2009 7:50 AM<BR><B>To:</B> 
mpich-discuss@mcs.anl.gov<BR><B>Subject:</B> [mpich-discuss] Running one MPI 
program from another<BR></FONT><BR></DIV>
<DIV></DIV>
<DIV><FONT face=Arial size=2>Hi,</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>I am trying to run an MPI program (prog) from 
another MPI program (test) using CreateProcess under Windows XP.&nbsp; 
</FONT><FONT face=Arial size=2>I am using MPICH2 v1.08. </FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>Source for test</FONT></DIV>
<DIV><FONT face=Arial size=2>#include "stdafx.h"<BR>#include 
&lt;afx.h&gt;<BR>#include "mpi.h"</FONT></DIV>
<DIV><FONT face=Arial size=2>int run_program( char * program 
)<BR>{<BR>&nbsp;&nbsp; STARTUPINFO si;<BR>&nbsp;&nbsp; PROCESS_INFORMATION 
pi;<BR>&nbsp;&nbsp; ZeroMemory( &amp;si, sizeof(si) );<BR>&nbsp;&nbsp; si.cb = 
sizeof(si);<BR>&nbsp;&nbsp; ZeroMemory( &amp;pi, sizeof(pi) );<BR>&nbsp;&nbsp; 
if( !CreateProcess( NULL,&nbsp;program,&nbsp;NULL, NULL, FALSE,</FONT><FONT 
face=Arial size=2> 0,</FONT><FONT face=Arial size=2> NULL, NULL, &amp;si, 
&amp;pi )&nbsp; ) <BR>&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return 
-1;<BR>&nbsp;&nbsp; }<BR>&nbsp;&nbsp; WaitForSingleObject( pi.hProcess, INFINITE 
);<BR>&nbsp;&nbsp; CloseHandle( pi.hProcess );<BR>&nbsp;&nbsp; CloseHandle( 
pi.hThread );<BR>&nbsp;&nbsp; return 0;<BR>}<BR>int main(int argc, char* 
argv[])<BR>{<BR>&nbsp;&nbsp; MPI_Init(NULL,NULL);<BR>&nbsp;&nbsp; 
run_program("prog");<BR>&nbsp;&nbsp; MPI_Finalize();<BR>&nbsp;return 
0;<BR>}<BR></DIV></FONT>
<DIV><FONT face=Arial size=2>Source for prog</FONT></DIV>
<DIV><FONT face=Arial size=2>#include "stdafx.h"<BR>#include 
"mpi.h"</FONT></DIV>
<DIV><FONT face=Arial size=2>int main(int argc, char* 
argv[])<BR>{<BR>&nbsp;&nbsp; MPI_Init( NULL, NULL );<BR>&nbsp;&nbsp; 
MPI_Finalize();<BR>&nbsp;&nbsp; return 0;<BR>}<BR></FONT></DIV>
<DIV><FONT face=Arial size=2>I get the following error when I run 
test:</DIV></FONT>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>&gt;mpiexec -n 1 test<BR>MPIDU_Sock_post_connect 
failed.<BR>[0] PMI_ConnectToHost failed: unable to post a connect to Yellowtail 
yellowtail<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
&nbsp;:2057, error: Unknown error class, error 
stack:<BR>MPIDU_Sock_post_connect(1228): unable to connect to Yellowtail 
yellowtail&nbsp;<BR>&nbsp;on port 2057, exhausted all endpoints (errno 
-1)<BR>MPIDU_Sock_post_connect(1275): unable to connect 
to&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
&nbsp;on port 2057,<BR>&nbsp;No connection could be made because the target 
machine actively refused it. (er<BR>rno 10061)<BR>MPIDU_Sock_post_connect(1275): 
unable to connect to yellowtail on port 2057, No<BR>connection could be made 
because the target machine actively refused it. 
(errno<BR>10061)<BR>MPIDU_Sock_post_connect(1275): unable to connect to 
Yellowtail on port 2057, No<BR>connection could be made because the target 
machine actively refused it. (errno<BR>10061)<BR>uPMI_ConnectToHost returning 
PMI_FAIL<BR>[0] PMI_Init failed.<BR>Fatal error in MPI_Init: Other MPI error, 
error stack:<BR>MPIR_Init_thread(294): Initialization 
failed<BR>MPID_Init(83)........: channel initialization 
failed<BR>MPID_Init(334).......: PMI_Init returned -1<BR>&gt;</FONT></DIV>
<DIV><FONT face=Arial size=2>&nbsp;</DIV></FONT>
<DIV><FONT face=Arial size=2>In my actual application prog is either&nbsp;a 
standalone MPI program which I can't change&nbsp;or&nbsp;a non MPI program (in 
which case test works) . </FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2></FONT><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>I'd be gratefull for any help.</FONT><FONT 
face=Arial size=2></FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>Thanks</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>Rod Cook</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV></BODY></HTML>