gpt4 book ai didi

c - 使用 MPI(C 语言)代码的矩阵乘法无法在超过 6 个节点上运行

转载 作者:行者123 更新时间:2023-11-30 15:13:24 24 4
gpt4 key购买 nike

我正在尝试用 MPI 编写一个 C 程序,主进程生成两个 2D 数组。

第一个矩阵(称为 A)的行分布到所有从节点(使用 MPI_Scatter),第二个矩阵(称为 B)的行复制到所有从节点(使用 MPI_Bcast)。

矩阵 A 的行被复制到另一个一维数组中,并将 A 和矩阵 B 的行相乘。相乘的结果使用 MPI_Gather 收集在第三个二维数组(称为 C)中。

当我输入 4 或 5 个节点以及 4*4 或 5*5 大小的数组时,它工作正常。例如,当我输入如下命令时它工作正常

$mpiexec -n 5 -f machinefile ./mpi_test3 5

(->第二个5的含义是数组的大小。它表示两个5*5矩阵的乘法。)

但是当我输入超过6个节点和6*6大小时它不起作用。例如,

$mpiexec -n 6 -f machinefile ./mpi_test3 6

我的代码是这样的。

#include <stdio.h>
#include <stdlib.h>
#include <mpi.h>
#include <time.h>
int main(int argc, char* argv[])
{
int i, j, k,m, ran, size, myrank, nprocs;
int a[size][size], b[size][size], c[size][size],ar[size],cr[size];
ran=10;
size= atoi(argv[1]);
MPI_Init(&argc,&argv);
MPI_Comm_size(MPI_COMM_WORLD, &nprocs);
MPI_Comm_rank(MPI_COMM_WORLD, &myrank);
//Initialization of Receive Buffer
for(i=0;i<size;++i){
cr[i]=0;
}
// make random values and put it into the two Matrix
if(myrank==0){
srand((unsigned)time(NULL));
for(i=0; i<size; ++i)
{
for(j=0; j<size; ++j)
{
a[i][j]= rand()%ran+1;
b[i][j]= rand()%ran+1;
}
}

}
//MPI SCATTER & BROAD CAST
MPI_Scatter(a,size,MPI_INT,&ar,size,MPI_INT,0,MPI_COMM_WORLD);
MPI_Bcast(b,size*size,MPI_INT,0,MPI_COMM_WORLD);
for(i=0;i<size;i++)
{
for(j=0;j<size;++j)
{
cr[i]+=ar[j]*b[j][i];
}
}
MPI_Gather(cr,size,MPI_INT,c,size,MPI_INT,0,MPI_COMM_WORLD);
//Print the Result of Multiplication
if(myrank==0){
printf("\t Result of Multiplication \n");
for(i=0; i<size; ++i){
for(j=0; j<size; ++j)
{
printf("%d ",c[i][j]);
}
printf("\n");
}
}

MPI_Finalize();
return 0;
}

我的机器文件是这样的。

clus15:2
clus16:2
clus17:2
clus18:2

我的代码有什么问题?

最佳答案

在定义数组之前需要先定义大小。

 int a[size][size], b[size][size], c[size][size],ar[size],cr[size];

此时,size 是一个 undefined variable ,并且在函数进入之前,这些数组在堆栈上分配。

int a[atoi(argv[1])][atoi(argv[1])]...,cr[atoi(argv[1])];

此外,请注意并非所有编译器都支持在函数中初始化具有可变大小的数组。

或者,您也可以通过以下方式动态分配这些数组:

int **a, **b, **c, **ar, *cr;
/* Be sure to check return value of malloc after each call */
a = malloc(sizeof(*a)*size);
b = malloc(sizeof(*b)*size);
c = malloc(sizeof(*c)*size);
ar = malloc(sizeof(*ar)*size);
cr = malloc(sizeof(*cr)*size);
/* Be sure to check return value of malloc after each call */
for (int i = 0 ; i < size ; i++)
a[i] = malloc(sizeof(**a)*size)
b[i] = malloc(sizeof(**b)*size)
c[i] = malloc(sizeof(**c)*size)
ar[i] = malloc(sizeof(**ar)*size)

目前,您处于未定义行为的领域,因为数组实际上并未使用您想要的大小进行初始化,而是在初始化之前使用驻留在大小中的不确定值。

尝试

printf("Size of cr: %d\n", (sizeof(cr)/sizeof(cr[0]));

在主函数中,查看数组大小是否等于您输入的参数。

关于c - 使用 MPI(C 语言)代码的矩阵乘法无法在超过 6 个节点上运行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34647241/

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