1

我正在创建一个通过 MPI 发送的结构,但在其他函数中使用该结构时遇到了一些问题。

typedef struct Coordinates
{
    int x;
    int y;
} XY;

int main (int argc, char *argv[])
{
    MPI_Init(&argc, &argv);
    .
    .
    .
    const int num_items = 2;
    int blocklengths[2] = {1, 1};
    MPI_Aint offsets [2];
    offsets[0] = offsetof(XY, x);
    offsets[1] = offsetof(XY, y);
    MPI_Datatype types[2] = {MPI_INT, MPI_INT};
    MPI_Datatype mpi_new_type;

    MPI_Type_struct(...., &mpi_new_type);
    MPI_Type_commit(&mpi_new_type);

    // Call some function here depending on rank
    if (rank == 0)
        controlFunction(..);
    else
        someFunction(..);

    return 0;
}

int controlFunction(..)
{
    MPI_Recv(.., mpi_new_type,...);
    .
    .
}

int someFunction(..)
{
    MPI_Send(.., mpi_new_type,...);
    .
    .
}

所以基本的想法是我创建一个包含一些数据的结构并创建一个新的 MPI_Datatype 来处理 MPI 上的结构。问题在于在使用我的程序编译时controlFunction以及在哪里出现错误:在这两个函数中。someFunctionmpicc file.c -o filempi_new_type undeclared

有什么方法可以在其他函数中访问此数据类型?

谢谢。

编辑 - 添加了更多代码以根据要求显示 mpi_new_type 的声明。

4

1 回答 1

3

该变量mpi_new_type仅在main函数体的范围内可见。someFunction该名称在' 和controlFunction' 的主体范围内未声明。您可以将变量作为参数传递给那些

 int main() {   
 ...
 if (...)
    controlFunction(mpi_new_type, ...);
 else
    ...
 ...
 }

 int controlFunction(MPI_Dataype mpi_new_type, ...) {

或将其设为全局变量(尽管不要忘记不鼓励使用全局变量的所有原因。)

于 2013-05-03T05:35:22.707 回答