- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试编写 MPI C 代码,该代码重复执行计算并将其结果保存到单个数组中,以降低输出频率。下面的示例代码(var 的大小,200,足以满足正在使用的 CPU 数量):
#include <stdio.h>
#include <stdlib.h>
#include <mpi.h>
int main(int argc, char **argv){
float *phie, *phitemp, var[200];
int time=0, gatherphi=10, gatherfile = 200, j, iter=0, lephie, x;
int nelecrank = 2, size, rank, Tmax = 2000;
FILE *out;
MPI_Init(&argc, &argv) ;
MPI_Comm_size(MPI_COMM_WORLD, &size);
MPI_Comm_rank(MPI_COMM_WORLD, &rank);
lephie = gatherfile/gatherphi; // number of runs of calculation before output
// allocate memory
//printf("%d Before malloc.\n", rank);
if (rank==1) phie=(float *) malloc(nelecrank*size*gatherfile/gatherphi*sizeof(float));
phitemp=(float *) malloc(nelecrank*sizeof(float));
//printf("%d After malloc.\n", rank);
for(j=0;j<200;j++) var[j]=rank;
for(time=0;time<Tmax;time++){
if (!time%gatherphi) {// do calculation
for (j=0;j<nelecrank;j++) { // each processor does the calculation nelecrank times
phitemp[j]=0;
for (x = 0; x<=4; x++) {
phitemp[j]=phitemp[j]+var[rank+j*size];
}
}
} // end of j for loop
printf("iter: %d, %d Before MPI_Gather.\n", iter, rank);
MPI_Gather(phitemp, nelecrank, MPI_FLOAT, phie+iter*nelecrank*size*sizeof(float), nelecrank, MPI_FLOAT, 1, MPI_COMM_WORLD);
iter++;
} // end of gatherphi condition
if (time % gatherfile) { //output result of calculation
iter=0;
if (rank==1) {
out = fopen ("output.txt", "wt+");
if (out == NULL) {
printf("Could not open output file.\n");
exit(1);
}
else printf("Have opened output file.\n");
for (j=0;j<nelecrank*size*lephie;j++) {
fprintf(out,"%f ",*(phie+j*sizeof(float)));
}
fclose(out);
}
} // end of file output
if (rank==1) {
if (phie) free (phie);
}
if (phitemp) free (phitemp);
MPI_Finalize();
return 0;
}
它给我带来了重复的内存分配问题,直到它最终退出。我没有在 MPI 中使用内存分配的经验 - 你能帮忙吗?
非常感谢,玛尔塔
最佳答案
基本上,phie
不够大。
您malloc
为phie
分配了nelecrank*size*gatherfile/gatherphi*sizeof(float)=80*sizeof(float)
内存。
但是,您的 MPI_Gather
使用需要 iter*nelecrank*size*sizeof(float)+nelecrank*size*sizeof(float)
内存。 iter
的最大值为 nelecrank*Tmax-1
,因此 phie
需要为 (nelecrank*Tmax-1)*nelecrank *size*sizeof(float)+nelecrank*size*sizeof(float)
,大约是 8000*size*sizeof(float)
大。
也许您想在循环中的某个位置重置 iter=0
?
关于c - 使用 MPI_Gather 断言失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41983839/
我在每个处理器(假设 3 个处理器)的本地数组(名为 lvotes)上都有一个值,每个处理器的第一个元素都存储一个值,即: P0 : 4 P1 : 6 p2 : 7 现在,使用 MPI_Gather,
我正在使用 MPI_Scatter 和 MPI_Gather 实现矩阵乘法。如果进程数平均分为矩阵行数和列数,我的代码就可以正常工作。但是,当它们不均匀划分时,它会在 MPI_Gather 上崩溃。这
#include #include int main(int argc,char * argv[]) { int rank,size,m; int ar
我是第一次使用 MPI_Gather 并遵循了一些示例,但出于某种原因,我每次调用它时都会遇到段错误。相关代码在这里: //Get the top N matches for each nod
我有两个 MPI 进程。每个进程都有一个相同大小的数组。我想将两个数组合并为一个双倍大小的数组。我应该使用哪个 mpi 接口(interface)? 例如,我有两个数组: 我想让他们进入排名 0: 我
我需要在我的矩阵乘法程序中使用 MPI_Gather 函数,但最近几天遇到了问题。 因此,我单独使用 gather 函数编写了一个简单的 MPI 程序,并一直试图让它运行……为此,我引用了“Peter
N 是 4,N_glob 也是。它恰好大小相同。 p 为 4。 下面是一小部分代码: float **global_grid; float **gridPtr; lengthSubN = N/pSqr
我有这个并行高斯消除代码。调用 MPI_Gather 函数调用时会发生段错误。我知道如果没有为两个缓冲区正确分配内存,这样的错误可能会增加。但是我看不出内存管理代码有什么问题。 有人可以帮忙吗? 谢谢
这是来自 MPI_Gather 2D array 的后续问题.这是情况: id = 0 has this submatrix |16.000000| |11.000000| |12.000000| |
我尝试使用 MPI_Gather 发送以下数据结构: struct set { int nbits; char bits[]; }; 问题是我无法收集上述结构的所有项目,只能收集第一
我正在尝试使用 MPI_Gather 收集结构数组。我使用 MPI_Type_contigulous 创建了一个结构“Final”的派生数据类型“mystruct”(每个元素都是 double )。然
我有一个主进程和更多从进程。我希望每个从进程向主进程发送一个整数,所以我想我应该使用 MPI_Gather 收集它们。但不知怎的,它不起作用,我开始认为 MPI_Gather 与 MPI_Send 不
我正在尝试编写 MPI C 代码,该代码重复执行计算并将其结果保存到单个数组中,以降低输出频率。下面的示例代码(var 的大小,200,足以满足正在使用的 CPU 数量): #include #in
我尝试编写“查找素数”代码。但是 MPI_Gather 函数无法获取“c”的值(素数)。即使我声明其他数组也不起作用。我的代码源有什么问题?当我删除 MPI_Gather 函数的部分时,效果很好。我是
所以我想做的是将输入字符串“HELO”打印为“HEELLLOOOO”到目前为止,我已经想出了这段代码 #include #include #include int main(int argc,
我试图让每个进程计算总和,然后将总和发送回根进程。 但是, printf("\nSUMS[%d] = %d",i,sums[i]); 行打印出的总和与 printf("中打印的总和不同\n我是进程 %
我正在尝试将数据传递给MPI_Gather。我按如下方式分配内存: float *phie, *phitemp; MPI_Comm_size(MPI_COMM_WORLD, &size); MPI_C
我正在尝试使用 OpenMPI 为我的本科高级项目构建一个多进程光线追踪器,以便我可以在我学校的 super 计算机上运行它。 我已经到了代码可以正常编译和运行的地步,直到我到达该行 MPI_Gath
我在 C 语言的 MPI 代码中遇到问题。 我想我创建了一个很好的算法来处理二维数组的双循环。但是,当我尝试使用 MPI_Gather 从进程中收集数据时,出现段错误。这是代码: #define NN
在 MPI 聚集和分散中,发送和接收有两个计数。我检查了文档,发现两者应该具有相同的值。 Ex:- 在 MPI_Gather() 中,send_count 和 receive_count 的大小都应该
我是一名优秀的程序员,十分优秀!