<?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: Running mpi w/o mpiexec/mpirun in Intel® MPI Library</title>
    <link>https://community.intel.com/t5/Intel-MPI-Library/Running-mpi-w-o-mpiexec-mpirun/m-p/889861#M2028</link>
    <description>&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
Of course, it's a common mode of operation to run all of it from a script, either under a queuing system or directly from the user session.&lt;BR /&gt;</description>
    <pubDate>Fri, 04 Dec 2009 00:39:08 GMT</pubDate>
    <dc:creator>TimP</dc:creator>
    <dc:date>2009-12-04T00:39:08Z</dc:date>
    <item>
      <title>Running mpi w/o mpiexec/mpirun</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/Running-mpi-w-o-mpiexec-mpirun/m-p/889859#M2026</link>
      <description>&lt;SPAN style="font-family: monospace; font-size: medium; white-space: pre;"&gt;
&lt;PRE&gt;I can compile and run a mpi application using mpiexec without any difficulties.&lt;/PRE&gt;
&lt;PRE&gt;What I want to do is to run a mpi application not in Terminal,I mean without using mpiexec or mpirun.&lt;/PRE&gt;
&lt;PRE&gt;Is this doable? If it is, how can I setup mpd daemon and other necessary stuffs in source level?&lt;/PRE&gt;
&lt;PRE&gt;&lt;SPAN style="font-family: verdana, sans-serif;"&gt;Thanks. &lt;/SPAN&gt;&lt;/PRE&gt;
&lt;PRE&gt;&lt;BR /&gt;&lt;/PRE&gt;
&lt;PRE&gt;==========&lt;/PRE&gt;
&lt;PRE&gt;&lt;SPAN style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;hello.c&lt;/SPAN&gt;&lt;/PRE&gt;
&lt;PRE&gt;==========&lt;/PRE&gt;
&lt;PRE&gt;#&lt;B&gt;&lt;SPAN style="color: #5f9ea0;"&gt;include&lt;/SPAN&gt;&lt;/B&gt; &lt;B&gt;&lt;SPAN style="color: #bc8f8f;"&gt;&lt;STDIO.H&gt;&lt;/STDIO.H&gt;&lt;/SPAN&gt;&lt;/B&gt;&lt;/PRE&gt;
&lt;PRE&gt;#&lt;B&gt;&lt;SPAN style="color: #5f9ea0;"&gt;include&lt;/SPAN&gt;&lt;/B&gt; &lt;B&gt;&lt;SPAN style="color: #bc8f8f;"&gt;&lt;MPI.H&gt;&lt;/MPI.H&gt;&lt;/SPAN&gt;&lt;/B&gt;&lt;/PRE&gt;
&lt;PRE&gt;&lt;SPAN style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/PRE&gt;
&lt;PRE&gt;static int run()&lt;/PRE&gt;
&lt;PRE&gt;{
	&lt;B&gt;&lt;SPAN style="color: #228b22;"&gt;int&lt;/SPAN&gt;&lt;/B&gt; node;&lt;/PRE&gt;
&lt;PRE&gt;	MPI_Init(xxx, xxx); /* TODO */&lt;/PRE&gt;
&lt;PRE&gt;	MPI_Comm_rank(MPI_COMM_WORLD, &amp;amp;node);
	printf(&lt;B&gt;&lt;SPAN style="color: #bc8f8f;"&gt;"Hello World from Node (%d)\n"&lt;/SPAN&gt;&lt;/B&gt;, node);
	MPI_Finalize();
	&lt;B&gt;&lt;SPAN style="color: #a020f0;"&gt;return&lt;/SPAN&gt;&lt;/B&gt; 0;	
}
&lt;/PRE&gt;
&lt;PRE&gt;&lt;SPAN style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/PRE&gt;
&lt;PRE&gt;int main (int argc, char **argv)&lt;/PRE&gt;
&lt;PRE&gt;&lt;SPAN style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;{&lt;/SPAN&gt;&lt;/PRE&gt;
&lt;PRE&gt;run();&lt;/PRE&gt;
&lt;PRE&gt;return 0;&lt;/PRE&gt;
&lt;PRE&gt;}&lt;/PRE&gt;
&lt;DIV&gt;&lt;SPAN style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: x-small;"&gt;&lt;SPAN style="font-size: 10px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;/SPAN&gt;</description>
      <pubDate>Tue, 10 Nov 2009 03:19:48 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/Running-mpi-w-o-mpiexec-mpirun/m-p/889859#M2026</guid>
      <dc:creator>jaewonj</dc:creator>
      <dc:date>2009-11-10T03:19:48Z</dc:date>
    </item>
    <item>
      <title>Re: Running mpi w/o mpiexec/mpirun</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/Running-mpi-w-o-mpiexec-mpirun/m-p/889860#M2027</link>
      <description>&lt;P&gt;Hi jaewonj,&lt;/P&gt;
&lt;P&gt;That's an interesting use case. Do you mind sharing with us why you're looking to start the daemons within the source code?&lt;/P&gt;
&lt;P&gt;I, personally, have only seen the start of the MPD daemons and MPI programs via scripts (be it shell or python) but not within compiled code. Perhaps others on this forum have a different experience. I know that with the Intel MPI Library, we don't provide any sort of system-level calls you can use.&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt;~Gergana&lt;/P&gt;</description>
      <pubDate>Thu, 03 Dec 2009 23:00:15 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/Running-mpi-w-o-mpiexec-mpirun/m-p/889860#M2027</guid>
      <dc:creator>Gergana_S_Intel</dc:creator>
      <dc:date>2009-12-03T23:00:15Z</dc:date>
    </item>
    <item>
      <title>Re: Running mpi w/o mpiexec/mpirun</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/Running-mpi-w-o-mpiexec-mpirun/m-p/889861#M2028</link>
      <description>&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
Of course, it's a common mode of operation to run all of it from a script, either under a queuing system or directly from the user session.&lt;BR /&gt;</description>
      <pubDate>Fri, 04 Dec 2009 00:39:08 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/Running-mpi-w-o-mpiexec-mpirun/m-p/889861#M2028</guid>
      <dc:creator>TimP</dc:creator>
      <dc:date>2009-12-04T00:39:08Z</dc:date>
    </item>
    <item>
      <title>Re: Running mpi w/o mpiexec/mpirun</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/Running-mpi-w-o-mpiexec-mpirun/m-p/889862#M2029</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="width: 100%; margin-top: 5px;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/198675"&gt;Gergana Slavova (Intel)&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;
&lt;P&gt;Hi jaewonj,&lt;/P&gt;
&lt;P&gt;That's an interesting use case. Do you mind sharing with us why you're looking to start the daemons within the source code?&lt;/P&gt;
&lt;P&gt;I, personally, have only seen the start of the MPD daemons and MPI programs via scripts (be it shell or python) but not within compiled code. Perhaps others on this forum have a different experience. I know that with the Intel MPI Library, we don't provide any sort of system-level calls you can use.&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt;~Gergana&lt;/P&gt;
&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;Hello Gergana, &lt;BR /&gt;&lt;BR /&gt;I can compile and run a program with INTEL MPI library and run with mpiexec without any difficulties. However, when I tried to run MPI programs via bash shell, I'm getting following error message&lt;BR /&gt;&lt;BR /&gt; &lt;SPAN style="color: #ff0000;"&gt;mpdroot: cannot connect to local mpd at: /tmp/mpd2.console_root&lt;BR /&gt; probable cause: no mpd daemon on this machine&lt;BR /&gt; possible cause: unix socket /tmp/mpd2.console_root has been removed&lt;BR /&gt;mpiexec_user-desktop (__init__ 1186): forked process failed; status=255&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;My test command in bash file is very simple&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN style="color: #ff0000;"&gt;#!/bin/sh&lt;BR /&gt;mpdboot &amp;amp;&lt;BR /&gt;mpiexec -n 2 ./program.exe&lt;BR /&gt;mpdallexit&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;It seems to me that mpi daemon is not started correctly. Is there a speical way to call mpi in shell scripts? &lt;BR /&gt;&lt;BR /&gt;Thanks very much!&lt;BR /&gt;&lt;BR /&gt;JACKY&lt;BR /&gt;</description>
      <pubDate>Wed, 16 Dec 2009 13:53:38 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/Running-mpi-w-o-mpiexec-mpirun/m-p/889862#M2029</guid>
      <dc:creator>vastviewec</dc:creator>
      <dc:date>2009-12-16T13:53:38Z</dc:date>
    </item>
    <item>
      <title>Re: Running mpi w/o mpiexec/mpirun</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/Running-mpi-w-o-mpiexec-mpirun/m-p/889863#M2030</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="margin-top: 5px; width: 100%;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/452530"&gt;vastviewec&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;My test command in bash file is very simple&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN style="color: #ff0000;"&gt;#!/bin/sh&lt;BR /&gt;mpdboot &amp;amp;&lt;BR /&gt;mpiexec -n 2 ./program.exe&lt;BR /&gt;mpdallexit&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;It seems to me that mpi daemon is not started correctly. Is there a speical way to call mpi in shell scripts? &lt;BR /&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;
&lt;P&gt;Hi Jacky,&lt;/P&gt;
&lt;P&gt;I would recommend that you amend your script as follows:&lt;/P&gt;
&lt;BLOCKQUOTE&gt;#!/bin/sh&lt;BR /&gt;mpdboot&lt;BR /&gt;mpiexec -n 2 ./program.exe&lt;BR /&gt;mpdallexit&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Note the missing &lt;STRONG&gt;"&amp;amp;"&lt;/STRONG&gt; after mpdboot. That's why the script was failing before: by putting mpdboot in the background, you're notwaiting forthe Intel MPI library to successfully start all MPDs, and *then* use those daemons to run your MPI program. In effect, it would be like running mpiexec with no mpdboot preceding it.&lt;/P&gt;
&lt;P&gt;I hope this makes sense. Let me know how it goes and if you have further questions.&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt;~Gergana&lt;/P&gt;</description>
      <pubDate>Wed, 16 Dec 2009 17:06:25 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/Running-mpi-w-o-mpiexec-mpirun/m-p/889863#M2030</guid>
      <dc:creator>Gergana_S_Intel</dc:creator>
      <dc:date>2009-12-16T17:06:25Z</dc:date>
    </item>
    <item>
      <title>Re: Running mpi w/o mpiexec/mpirun</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/Running-mpi-w-o-mpiexec-mpirun/m-p/889864#M2031</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="width: 100%; margin-top: 5px;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/198675"&gt;Gergana Slavova (Intel)&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;
&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
&lt;BR /&gt;
&lt;P&gt;Hi Jacky,&lt;/P&gt;
&lt;P&gt;I would recommend that you amend your script as follows:&lt;/P&gt;
&lt;BLOCKQUOTE&gt;#!/bin/sh&lt;BR /&gt;mpdboot&lt;BR /&gt;mpiexec -n 2 ./program.exe&lt;BR /&gt;mpdallexit&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Note the missing &lt;STRONG&gt;"&amp;amp;"&lt;/STRONG&gt; after mpdboot. That's why the script was failing before: by putting mpdboot in the background, you're notwaiting forthe Intel MPI library to successfully start all MPDs, and *then* use those daemons to run your MPI program. In effect, it would be like running mpiexec with no mpdboot preceding it.&lt;/P&gt;
&lt;P&gt;I hope this makes sense. Let me know how it goes and if you have further questions.&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt;~Gergana&lt;/P&gt;
&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;Thanks Gergana! The problem is solved by using your solustion!&lt;BR /&gt;&lt;BR /&gt;Regards, &lt;BR /&gt;&lt;BR /&gt;Jacky &lt;BR /&gt;</description>
      <pubDate>Thu, 17 Dec 2009 13:26:50 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/Running-mpi-w-o-mpiexec-mpirun/m-p/889864#M2031</guid>
      <dc:creator>vastviewec</dc:creator>
      <dc:date>2009-12-17T13:26:50Z</dc:date>
    </item>
    <item>
      <title>Re: Running mpi w/o mpiexec/mpirun</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/Running-mpi-w-o-mpiexec-mpirun/m-p/889865#M2032</link>
      <description>I think that it is a bit more convenient to run such programs via scripts. &lt;BR /&gt;&lt;BR /&gt;___________&lt;BR /&gt; &lt;A href="http://essayshelp.org/"&gt;essay paper help&lt;/A&gt;</description>
      <pubDate>Mon, 11 Jan 2010 14:39:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/Running-mpi-w-o-mpiexec-mpirun/m-p/889865#M2032</guid>
      <dc:creator>duzyatko2yahoo_com</dc:creator>
      <dc:date>2010-01-11T14:39:00Z</dc:date>
    </item>
    <item>
      <title>Running mpi w/o mpiexec/mpirun</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/Running-mpi-w-o-mpiexec-mpirun/m-p/889866#M2033</link>
      <description>&lt;P&gt;Previously in MPI implementation, there is a way to specify the environment variables and start each process individually without using MPIexec.&lt;BR /&gt;&lt;BR /&gt;I wonder if anybody has been successful in doing it this way using Intel MPI? Certain applications that I require has to be invoked separately, so I will require such ways of starting each node.&lt;BR /&gt;&lt;BR /&gt;Hope somebody can advise.&lt;/P&gt;</description>
      <pubDate>Tue, 23 Mar 2010 16:41:27 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/Running-mpi-w-o-mpiexec-mpirun/m-p/889866#M2033</guid>
      <dc:creator>jimmy82</dc:creator>
      <dc:date>2010-03-23T16:41:27Z</dc:date>
    </item>
    <item>
      <title>Running mpi w/o mpiexec/mpirun</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/Running-mpi-w-o-mpiexec-mpirun/m-p/889867#M2034</link>
      <description>&lt;P&gt;Hi jimmy,&lt;/P&gt;
&lt;P&gt;Can you perhaps give an example of an MPI implementation that doesn't use mpiexec. A lot of the ones I know either use that, or mpirun to control the MPI processes and communication.&lt;/P&gt;
&lt;P&gt;In terms of environment variables for Intel MPI Library, those can be set whenever you want - either before you start your MPI processes, or on the command line.&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt;~Gergana&lt;/P&gt;</description>
      <pubDate>Wed, 24 Mar 2010 00:14:48 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/Running-mpi-w-o-mpiexec-mpirun/m-p/889867#M2034</guid>
      <dc:creator>Gergana_S_Intel</dc:creator>
      <dc:date>2010-03-24T00:14:48Z</dc:date>
    </item>
    <item>
      <title>Running mpi w/o mpiexec/mpirun</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/Running-mpi-w-o-mpiexec-mpirun/m-p/889868#M2035</link>
      <description>In the past, I have an application that actually calls mpi_init which blocks till all the applications on the other nodes are also initialised. This is achieved by setting the PMI environment variables. Is this method also applicable for Intel MPI?&lt;BR /&gt;&lt;BR /&gt;The previous implementation that I talked about is using MPICH 1.</description>
      <pubDate>Thu, 25 Mar 2010 16:00:37 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/Running-mpi-w-o-mpiexec-mpirun/m-p/889868#M2035</guid>
      <dc:creator>jimmy82</dc:creator>
      <dc:date>2010-03-25T16:00:37Z</dc:date>
    </item>
    <item>
      <title>Running mpi w/o mpiexec/mpirun</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/Running-mpi-w-o-mpiexec-mpirun/m-p/889869#M2036</link>
      <description>After loading an Intel MPI module file, compiler wrappers with prefix &lt;CODE&gt;mpi&lt;/CODE&gt;
 are in your $PATH. The remaining name component of a compiler wrapper 
command specifies the underlying compiler to be used (&lt;CODE&gt;mpigcc&lt;/CODE&gt;
 uses gcc, &lt;CODE&gt;mpiifort&lt;/CODE&gt; uses ifort).&lt;BR /&gt;

___________________
&lt;P&gt;&lt;A href="http://bandsrings.com"&gt;bands rings&lt;/A&gt; | &lt;A href="http://swarovskicrystalbeads.net"&gt;swarovski crystal beads&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 11 Jun 2010 16:05:09 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/Running-mpi-w-o-mpiexec-mpirun/m-p/889869#M2036</guid>
      <dc:creator>lordme</dc:creator>
      <dc:date>2010-06-11T16:05:09Z</dc:date>
    </item>
    <item>
      <title>Re: Running mpi w/o mpiexec/mpirun</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/Running-mpi-w-o-mpiexec-mpirun/m-p/889870#M2037</link>
      <description>Hello Gergana,&lt;BR /&gt;&lt;BR /&gt;I haven't checked this thread for a while. Thanks for answering my question.&lt;BR /&gt;&lt;BR /&gt;What I wanted to do was to run parallel libraries such as PETSc from within my application. As a quick and dirty workaround, I made a sperate executable and called it from my application using &lt;I&gt;system&lt;/I&gt; command. I used binary file stream to communicate with that executable.&lt;BR /&gt;&lt;BR /&gt;I think my question still stands. Do you think it is doable, I mean running MPI app without mpiexec?&lt;BR /&gt;&lt;BR /&gt;Best Regards,&lt;BR /&gt;Jaewon&lt;BR /&gt;</description>
      <pubDate>Fri, 13 Aug 2010 01:56:34 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/Running-mpi-w-o-mpiexec-mpirun/m-p/889870#M2037</guid>
      <dc:creator>jaewonj</dc:creator>
      <dc:date>2010-08-13T01:56:34Z</dc:date>
    </item>
    <item>
      <title>Re: Running mpi w/o mpiexec/mpirun</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/Running-mpi-w-o-mpiexec-mpirun/m-p/889871#M2038</link>
      <description>&lt;DIV id="tiny_quote"&gt;
                &lt;DIV style="margin-left: 2px; margin-right: 2px;"&gt;Quoting &lt;A rel="/en-us/services/profile/quick_profile.php?is_paid=&amp;amp;user_id=431061" class="basic" href="https://community.intel.com/en-us/profile/431061/"&gt;jaewonj&lt;/A&gt;&lt;/DIV&gt;
                &lt;DIV style="background-color: #e5e5e5; padding: 5px; border: 1px inset; margin-left: 2px; margin-right: 2px;"&gt;&lt;I&gt;&lt;BR /&gt;I think my question still stands. Do you think it is doable, I mean running MPI app without mpiexec?&lt;BR /&gt;&lt;BR /&gt;&lt;/I&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&lt;/P&gt;This makes sense only in the context of future versions of MPI, where mpiexec may be implicit in an application which is linked against MPI. If you have available a system() function, and can set up the MPI environment, why not include mpiexec in the command you start under system()?&lt;BR /&gt;</description>
      <pubDate>Fri, 13 Aug 2010 02:40:17 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/Running-mpi-w-o-mpiexec-mpirun/m-p/889871#M2038</guid>
      <dc:creator>TimP</dc:creator>
      <dc:date>2010-08-13T02:40:17Z</dc:date>
    </item>
    <item>
      <title>Re: Running mpi w/o mpiexec/mpirun</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/Running-mpi-w-o-mpiexec-mpirun/m-p/889872#M2039</link>
      <description>Thanks tim18. As you said it's possible to invoke mpiexec via system command but I don't like to use filestream. &lt;BR /&gt;&lt;BR /&gt;Best regards,&lt;BR /&gt;Jaewon&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 13 Aug 2010 17:49:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/Running-mpi-w-o-mpiexec-mpirun/m-p/889872#M2039</guid>
      <dc:creator>jaewonj</dc:creator>
      <dc:date>2010-08-13T17:49:00Z</dc:date>
    </item>
  </channel>
</rss>

