<div dir="ltr"><div><div><div><div><div><div>Dear MPI users,<br><br></div>Recently I moved to Ubuntu 13.10 and I got a problem with running my codes on ubutnu 13.10.<br></div>After checking my code I tried to execute a hello world! code instead to make sure that the problem is from mpi or not. Then I find that rank of all processes is 0 and size is 1 independent from the number of processes that I use with mpiexec.<br>
</div>herer is the code:<br><span class=""><span><br>#include <mpi.h><br>#include <iostream><br>using namespace std;<br>int main(int argc ,char ** argv)<br>{<br><br>    int size,rank;<br><br>    MPI_Init(&argc, &argv);<br>
    MPI_Comm_size(MPI_COMM_WORLD, &size);<br>    MPI_Comm_rank(MPI_COMM_WORLD, &rank);<br>   cout<<rank<<endl;<br>    MPI_Finalize();<br>    <br>}<br></span></span><br><br><br></div>Is there any thing wrong with this code?<br>
<br></div>Thanks in advance,<br></div>Ehsan<br></div>