gpt4 book ai didi

c++ - 等级 2 导致所有机架集体中止

转载 作者:太空宇宙 更新时间:2023-11-04 03:31:26 35 4
gpt4 key购买 nike

下面的代码尝试使用 mpi 查找数组的最大数量.但是我不断收到以下错误:

Rank 2 in job 47 caused collective abort of all ranks. Exit status of rank 2 : killed by signal 9

谁能告诉我哪里出了问题?

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

int main(int argc , char * argv[])
{
int myRank , numOfProcesses;
int source , destination;
int tag = 0;
int i = 0, j = 0, k = 0;
int masterArray[] = {5,6,8,10,12,3,9,-1,3,7};
int max , globalMax = -100000;
int flag = 0;

MPI_Init(&argc, &argv);
MPI_Status status;
MPI_Comm_rank(MPI_COMM_WORLD , &myRank);
MPI_Comm_size(MPI_COMM_WORLD , &numOfProcesses);
printf("Process : %d \n" , myRank);

int masterSize = sizeof(masterArray)/sizeof(int);
//printf("%d \n" , masterSize);
int slaveSize = masterSize/(numOfProcesses-1);
//printf("%d \n" , slaveSize);
int slaveArray[slaveSize];

if (myRank == 0){

for (i=1; i<numOfProcesses; i++){
for (j=0; j<slaveSize; j++){
slaveArray[j] = masterArray[k];
// printf("%d \n" , masterArray[k]);
k++;
}

MPI_Send(slaveArray, slaveSize, MPI_INT, i, tag, MPI_COMM_WORLD);
}


for (i=1; i<numOfProcesses; i++){
MPI_Recv(max , 1, MPI_INT, i, tag, MPI_COMM_WORLD, &status);

if (globalMax < max)
max = globalMax;
}
printf("Global Maximum %d \n" , globalMax);

}

else{

MPI_Recv(slaveArray , slaveSize, MPI_INT, 0, tag, MPI_COMM_WORLD, &status);
max = slaveArray[0];

for (i=0; i<slaveSize; i++){
if (slaveArray[i] > max)
max = slaveArray[i];
}
printf("Max in %d %d \n" , myRank, max);

MPI_Send(max , 1, MPI_INT, 0, tag, MPI_COMM_WORLD);

}

MPI_Finalize();

return 0;
}

最佳答案

在 MPI 中发送和接收消息总是通过地址进行的。在以下内容中:

MPI_Recv(max , 1, MPI_INT, i, tag, MPI_COMM_WORLD, &status);

...

MPI_Send(max , 1, MPI_INT, 0, tag, MPI_COMM_WORLD);

您使用该值。您必须添加 & 才能获取地址。

你还应该学会使用适当的集体操作:MPI_ScatterMPI_Reduce .

顺便说一下,这一行的顺序也是错误的:

max = globalMax;

请也学会倾听你的编译器!任何具有合理设置的合理编译器都会警告您将整数作为地址传递。

关于c++ - 等级 2 导致所有机架集体中止,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36240332/

35 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com