我正在创建一个通过 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
以及在哪里出现错误:在这两个函数中。someFunction
mpicc file.c -o file
mpi_new_type undeclared
有什么方法可以在其他函数中访问此数据类型?
谢谢。
编辑 - 添加了更多代码以根据要求显示 mpi_new_type 的声明。