<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
</head>
<body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; ">
I think I have more basic problems than what you are referring to:
<div><br>
</div>
<div>I copy-pasted Reuti's code into a file named mpitest.c and tried to compile with&nbsp;</div>
<div><br>
</div>
<div>gcc -Wall mpitest.c</div>
<div><br>
</div>
<div>It failed to compile and issued following error(s):</div>
<div>=================================</div>
<div>
<div>Undefined symbols:</div>
<div>&nbsp;&nbsp;&quot;_ompi_mpi_comm_world&quot;, referenced from:</div>
<div>&nbsp;&nbsp; &nbsp; &nbsp;_main in cc8tNiKW.o</div>
<div>&nbsp;&nbsp;&quot;_MPI_Comm_rank&quot;, referenced from:</div>
<div>&nbsp;&nbsp; &nbsp; &nbsp;_main in cc8tNiKW.o</div>
<div>&nbsp;&nbsp;&quot;_MPI_Finalize&quot;, referenced from:</div>
<div>&nbsp;&nbsp; &nbsp; &nbsp;_main in cc8tNiKW.o</div>
<div>&nbsp;&nbsp;&quot;_MPI_Init&quot;, referenced from:</div>
<div>&nbsp;&nbsp; &nbsp; &nbsp;_main in cc8tNiKW.o</div>
<div>ld: symbol(s) not found</div>
<div>collect2: ld returned 1 exit status</div>
</div>
<div>==================================</div>
<div><br>
</div>
<div><br>
</div>
<div>Rohan</div>
<div><br>
</div>
<div>
<div>
<div>On Jan 17, 2012, at 3:09 PM, Jed Brown wrote:</div>
<br class="Apple-interchange-newline">
<blockquote type="cite">
<div class="gmail_quote">On Tue, Jan 17, 2012 at 16:02, Reuti <span dir="ltr">&lt;<a href="mailto:reuti@staff.uni-marburg.de">reuti@staff.uni-marburg.de</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div id=":1mf">main(int argc, char **argv)<br>
{<br>
&nbsp; int node;<br>
<br>
&nbsp; int i,j;<br>
&nbsp; float f;<br>
<br>
&nbsp; MPI_Init(NULL,NULL);<br>
&nbsp; MPI_Comm_rank(MPI_COMM_WORLD, &amp;node);<br>
<br>
&nbsp; printf(&quot;Hello World from Node %d.\n&quot;, node);<br>
&nbsp; &nbsp; &nbsp; for(j=0; j &lt;= 100000; j&#43;&#43;)<br>
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; for(i=0;i &lt;= 100000; i&#43;&#43;)<br>
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; f=i*2.718281828*i&#43;i&#43;i*3.141592654;</div>
</blockquote>
</div>
<br>
<div>Well this is an odd spin loop because the compiler will happily remove it for you (note that MPICH2's mpicc wrapper very frequently has optimization flags in it). I would suggest sleep(3) instead, or, if you must, force the loop to actually be executed
 (e.g. seed the loop with the rank and use the result).</div>
_______________________________________________<br>
mpich-discuss mailing list &nbsp;&nbsp;&nbsp;&nbsp;<a href="mailto:mpich-discuss@mcs.anl.gov">mpich-discuss@mcs.anl.gov</a><br>
To manage subscription options or unsubscribe:<br>
<a href="https://lists.mcs.anl.gov/mailman/listinfo/mpich-discuss">https://lists.mcs.anl.gov/mailman/listinfo/mpich-discuss</a><br>
</blockquote>
</div>
<br>
</div>
</body>
</html>