0

我一直在研究一个 MPI 项目,其中从站都将数据发送回主站。出于某种原因,如果我连续进行 2 次连续发送,主机只会收到数据。这很奇怪,我认为这会导致我遇到其他一些奇怪的问题。知道什么会导致这种情况吗?我认为第一次发送是发送某种垃圾数据或其他东西。但是,发送是完全相同的代码行。

编辑:下面的代码...

if (numProcs > 0)
    MPI_Barrier( MPI_COMM_WORLD ) ; //only wait if there are other processes to wait for

if (rank != 0)
{
    MPI_Send(handArray, 10, MPI_DOUBLE, 0, TAG_HAND, MPI_COMM_WORLD);
    MPI_Send(handArray, 10, MPI_DOUBLE, 0, TAG_HAND, MPI_COMM_WORLD);
}
//8. After the main loop the master process receives and sums together the hand counts array
//   from each slave process.
else
{
    int activeProcs = numProcs - 1;
    getHandsFromSlaves( activeProcs, handArray );

然后主人继续打印一些数据......

这是 getHands FromSlaves 方法。请注意,我也尝试过使用阻塞调用来解决同样的问题。

void getHandsFromSlaves( int& activeCount, double handTotals[10] ){

static MPI_Request request;
static int msgBuff, recvFlag;
static double handBuff[10];
MPI_Status status;

while (activeCount > 0)
{
    if( request )
    {
        // Already listening for a message

        // Test to see if message has been received
        MPI_Test( &request, &recvFlag, &status );
        //cout << "TAG: " << status.MPI_TAG << " SOURCE: "<< status.MPI_SOURCE  << " ERROR: " << status.MPI_ERROR << endl;
        if( recvFlag )
        {
            // Message received
            if( status.MPI_TAG == TAG_HAND )
            {
                cout << "Hand Received!" << endl;

                for(int m = 0; m < 10; ++m)
                {
                    handTotals[m] += handBuff[m];
                }

                activeCount--;
            }
            else
            {
                //error report... what happened?
                cout << "TAG: " << status.MPI_TAG << " SOURCE: "<< status.MPI_SOURCE  << " ERROR: " << status.MPI_ERROR << endl;
            }

            // Reset the request handle
            request = 0;
        }
    }

    if( !request && activeCount > 0 )
        // Start listening again
        MPI_Irecv(&handBuff, 10, MPI_DOUBLE, MPI_ANY_SOURCE, MPI_ANY_TAG, MPI_COMM_WORLD, &request);
}
}
4

1 回答 1

1

好吧,您可能正在尝试处理太多消息,因为您的request变量在进入您的getHandsFromSlaves()例程时未定义。由于在输入时,request几乎可以肯定是非零的,MPI_Test因此即使您没有发布Irecv.

事实上,这里发布的代码摘录有很多非常奇怪的事情。为什么是局部变量static?你为什么要实现自己的 busywaitMPI_Test()而不是 using MPI_Wait()?如果您在接收之间没有做任何有用的事情,为什么还要使用非阻塞接收?事实上,如果你只是总结所有的数组,你为什么要做单独的点对点接收而不是做一个MPI_Reduce()

以下更短的代码似乎可以完成您在上面尝试做的事情:

#include <stdio.h>
#include <mpi.h>


int main (int argc, char **argv) {

    int rank, numProcs;

    MPI_Init(&argc, &argv);
    MPI_Comm_rank(MPI_COMM_WORLD, &rank);
    MPI_Comm_size(MPI_COMM_WORLD, &numProcs);
    double handArray[10];
    double handTotal[10];

    for (int i=0; i<10; i++)
        handArray[i] = rank + i;

    if (rank == 0)  // Since apparently rank 0 doesn't do anything
    {
        for (int i=0; i<10; i++)
            handArray[i] = 0;
    }

    MPI_Reduce(handArray, handTotal, 10, MPI_DOUBLE, MPI_SUM, 0, MPI_COMM_WORLD);

    if (rank == 0) {
        printf("Hand Totals= \n");
        for (int i=0; i<10; i++)
            printf(" %lf ", handTotal[i]);
        printf("\n");
    }

    MPI_Finalize();
}
于 2012-10-13T23:02:00.427 回答