What is available:<br>I have full access to the module that I wish to implement MPI in. However I do not have access to source code of other modules, only object files of all the modules are available for me to do linking.<br>
<br>workflow/pipeline?<br>I do not completely understand this question but the software calls certain number of modules one after another depending upon the problem to be solved. The modules are called one after another. Each module that is called provides some results to the next module.<br>
<br>move on?<br>Yes exactly right. Need to launch MPI-enhanced subroutine/module, wait until it is done. And move on to next next without even knowing that the computation was done in parallel of serial. <br><br>Resources allocation is not a problem; the software will have n number of processors to itself whenever needed. This is accomplished by requesting n processors for the entire run time.<br>
<br>Additional Question:<br>
I have source code of one module and object files of all other modules. 
The object files were created using ifort (Intel Fortran). The MPI-enhanced object 
file I am creating is using MPIF90. Does linking these two type of object 
files is a problem? Do I need to create all object files using MPIF90 or ifort object files will work?<br>
<br>Gulshan<br><br><div class="gmail_quote">On Tue, Dec 14, 2010 at 4:51 AM, Nicolas Rosner <span dir="ltr">&lt;<a href="mailto:nrosner@gmail.com">nrosner@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
Hello Gulshan,<br>
<br>
I&#39;m assuming you meant more or less the following:<br>
<br>
  - you have a program spanning multiple compilation units and/or libs<br>
      and<br>
  - you would like to MPI-enable just one of said units or modules<br>
      and<br>
  - any necessary IPC/comm/sync between the MPI-ized unit and the rest<br>
    is addressed by separate mechanisms (other than MPI)<br>
<br>
If so, sure, as long as you have the source code for that particular unit<br>
or module, you should be able to limit any MPI compile/link-dependency of<br>
your system to the one module that actually uses MPI calls.<br>
<div class="im"><br>
<br>
&gt; There are more than 10 modules in the software we are trying to modify to<br>
&gt; improve the speed. We know that the most time is taken by only one module.<br>
<br>
</div>Do these modules map to sequential stages of a workflow/pipeline? Is that<br>
one module one such stage? Is it currently invoked in a call-return way?<br>
<div class="im"><br>
<br>
&gt; So MPI starts when the particular module is called and<br>
&gt; the MPI collapses as soon as the computation in the module is finished.<br>
<br>
</div>What you describe sounds essentially like a sequential program that, at<br>
some point --or perhaps every now and then-- needs to launch a parallel,<br>
MPI-enhanced subroutine/subprocess, wait until it&#39;s done, then move on..?<br>
<br>
If so, this is certainly possible, assuming your resource allocation<br>
plays along (ie the machines are always there for you when you need them, etc).<br>
<br>
HTH, just guessing; good luck!  N.<br>
_______________________________________________<br>
mpich-discuss mailing list<br>
<a href="mailto:mpich-discuss@mcs.anl.gov">mpich-discuss@mcs.anl.gov</a><br>
<a href="https://lists.mcs.anl.gov/mailman/listinfo/mpich-discuss" target="_blank">https://lists.mcs.anl.gov/mailman/listinfo/mpich-discuss</a><br>
</blockquote></div><br>