<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
cpi starts and writes the following:<br>
Process 0 of 2 is on WARZONE<br>
Process 1 of 2 is on F9Virtual64<br>
Nothing more. It never exits. I didn't pass any parameters to cpi.
Should I?<br>
<br>
<pre wrap="">MPI_Bcast(&amp;size, 1, MPI_INT, 0, MPI_COMM_WORLD) returns success, my program then prints that it is about to call next broadcast, but that's it, next broadcast never returns.
My second node is virtual Fedora 9 x86_64 (VMWare), running on server node (real Fedora 9 x86_64). Could it be the problem?
</pre>
<br>
<br>
Rajeev Thakur &#1087;&#1080;&#1096;&#1077;&#1090;:
<blockquote cite="mid:8EAC407BE372431588B26E0455101FC7@thakurlaptop"
 type="cite">
  <pre wrap="">Does the cpi example from the examples directory run? 

Does this program fail after the very first broadcast, i.e.,
  </pre>
  <blockquote type="cite">
    <pre wrap="">    if(MPI_Bcast(&amp;size, 1, MPI_INT, 0, MPI_COMM_WORLD)!=MPI_SUCCESS)
    </pre>
  </blockquote>
  <pre wrap=""><!---->
Rajeev

  </pre>
  <blockquote type="cite">
    <pre wrap="">-----Original Message-----
From: <a class="moz-txt-link-abbreviated" href="mailto:owner-mpich-discuss@mcs.anl.gov">owner-mpich-discuss@mcs.anl.gov</a> 
[<a class="moz-txt-link-freetext" href="mailto:owner-mpich-discuss@mcs.anl.gov">mailto:owner-mpich-discuss@mcs.anl.gov</a>] On Behalf Of The Source
Sent: Wednesday, September 17, 2008 7:45 AM
To: <a class="moz-txt-link-abbreviated" href="mailto:mpich-discuss@mcs.anl.gov">mpich-discuss@mcs.anl.gov</a>
Subject: [mpich-discuss] Mpich2: problems with communications

I'm using mpich2 1.0.7. I installed and configured it on 2 
machines, started daemons.
The problems begin when I launch my program: first MPI_Bcast 
succeeds, but the second one (or any other communication 
function) hangs. Source code is attached.

Also when I call MPI_Bcast, second machine deamon prints the 
following:
F9Virtual64_mpdman_1 (run282): invalid msg from lhs; 
expecting ringsize
got: {}

Can anyone look at the code and tell me what's wrong?

#include &lt;mpi.h&gt;
#include &lt;stdio.h&gt;
#include &lt;string.h&gt;
#include &lt;math.h&gt;
#include &lt;sys/time.h&gt;

int main(int arg_c, char** arg_v)
{
    if(arg_c&lt;2)
    {
        printf("Input file not specified\n");
        return 0;
    }
    if(MPI_Init(&amp;arg_c, &amp;arg_v)!=MPI_SUCCESS)
    {
        printf("MPI initialization failed\n");
        return 0;
    }
    int ProcNum, ProcRank;
    MPI_Comm_size(MPI_COMM_WORLD, &amp;ProcNum);
    MPI_Comm_rank(MPI_COMM_WORLD, &amp;ProcRank);
   
    int size;
    double e;
    double* A;
    double* b;
    double* x, *xprev;
   
    FILE* f=0;
    if(!ProcRank)
    {
        f=fopen(arg_v[1], "r");
        if(!f)
        {
            printf("Error opening input file\n");
            MPI_Finalize();
            return 0;
        }
        fscanf(f, "%d", &amp;size);
        printf("Enter desired accuracy\n");
        scanf("%lf", &amp;e);
    }
    if(!ProcRank)
        printf("Broadcasting matrix size\n");
    if(MPI_Bcast(&amp;size, 1, MPI_INT, 0, MPI_COMM_WORLD)!=MPI_SUCCESS)
        if(!ProcRank)
            printf("Failed to broadcast matrix size\n");
    if(!ProcRank)
        printf("Broadcasting accuracy\n");
    if(MPI_Bcast(&amp;e, 1, MPI_DOUBLE, 0, MPI_COMM_WORLD)!=MPI_SUCCESS)
        if(!ProcRank)
            printf("Failed to broadcast accuracy\n");
    A=new double[size*size];
    b=new double[size];
    x=new double[size];
    xprev=new double[size];
   
    memset(x, 0, size*sizeof(double));
    memset(xprev, 0, size*sizeof(double));
   
    if(!ProcRank)
    {
        for(int i=0; i&lt;size; i++)
            for(int j=0; j&lt;size; j++)
                fscanf(f, "%lf", &amp;(A[i*size+j]));
        for(int i=0; i&lt;size; i++)
            fscanf(f, "%lf", &amp;(b[i]));
        fclose(f);
    }
   
    if(!ProcRank)
        printf("Waiting all processes to be initialized\n");
    MPI_Barrier(MPI_COMM_WORLD);
   
    if(!ProcRank)
        printf("Broadcasting matrix\n");
    MPI_Bcast(A, size*size, MPI_DOUBLE, 0, MPI_COMM_WORLD);
    if(!ProcRank)
        printf("Broadcasting b\n");
    MPI_Bcast(b, size, MPI_DOUBLE, 0, MPI_COMM_WORLD);
   
    double cursum, totalsum;
    int fin, itercount=0;
   
    if(!ProcRank)
        printf("Starting calculation\n");
    struct timeval tv1, tv2;
    gettimeofday(&amp;tv1, 0);
    do
    {
        MPI_Bcast(xprev, size, MPI_DOUBLE, 0, MPI_COMM_WORLD);
        itercount++;
        for(int i=0; i&lt;size; i++)
        {
            int snum=(size)/ProcNum;
            cursum=0.0;
            totalsum=0.0;
            for(int n=ProcRank*snum;
n&lt;((ProcRank==ProcNum-1)?(size):((ProcRank+1)*snum)); n++)
            {
                if(n&lt;=i-1)
                    cursum+=A[i*size+n]*x[n];
                else
                    cursum+=A[i*size+n]*xprev[n];
            }
            MPI_Barrier(MPI_COMM_WORLD);
            MPI_Reduce(&amp;cursum, &amp;totalsum, 1, MPI_DOUBLE, 
MPI_SUM, 0, MPI_COMM_WORLD);
            if(!ProcRank)
            {
                x[i]=xprev[i]-1.0/A[i*size+i]*(totalsum-b[i]);
            }
        }
        if(!ProcRank)
        {
            fin=1;
            for(int i=0; i&lt;size; i++)
                if(fabs(x[i]-xprev[i])&gt;e)
                    fin=0;
            if(!fin)
                memcpy(xprev, x, size*sizeof(double));
        }
        MPI_Bcast(&amp;fin, 1, MPI_INT, 0, MPI_COMM_WORLD);
    }
    while(!fin);
   
    gettimeofday(&amp;tv2, 0);
   
    if(!ProcRank)
    {
        printf("Matrix A:\n");
        for(int i=0; i&lt;size; i++)
        {
            for(int j=0; j&lt;size; j++)
                printf("%lf ", A[i*size+j]);
            printf("\n");
        }
        printf("\n");
        printf("Line b:\n");
        for(int i=0; i&lt;size; i++)
            printf("%lf ", b[i]);
        printf("\n");
       
        printf("Iteration number: %d\n", itercount);
        printf("Calculation time: %d microseconds\n", 
(tv2.tv_sec-tv1.tv_sec)*1000000+(tv2.tv_usec-tv1.tv_usec));
       
        printf("Results: \n");
        for(int i=0; i&lt;size; i++)
            printf("x%d=%lf\n", i+1, x[i]);
    }
   
    MPI_Barrier(MPI_COMM_WORLD);
   
    delete [] A;
    delete [] b;
    delete [] x;
    delete [] xprev;
   
    MPI_Finalize();
   
    return 0;
}


    </pre>
  </blockquote>
  <pre wrap=""><!---->

  </pre>
</blockquote>
<br>
</body>
</html>