gpt4 book ai didi

c - MPI 2x 打印

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

我正在学习一些 MPI,并决定通过编写一个调用对象的程序来进行测试,例如 main.c -> 主程序,function.c -> 任何函数

function.c 仅使用 MPI。编译I如下:

gcc-c main.c

创建main.ompicc-c创建function.c function.o,当然我也创建了文件function.h

我用mpicc-o程序编译main.o function.o

这是main.c

#include <stdio.h>
#include "function.h"

void main(int argc, char *argv[])
{
printf("Hello\n");
function();
printf("Bye\n");
}

只是函数具有 MPI 代码,但是当我运行程序 mpiexe -np 2 我得到

Hello
Hello
----- function job here -----
Bye
Bye

但我想要它是

Hello
------ function job -----
Bye

我能做什么?

最佳答案

您的整个程序在您使用 -np 2 设置的两个处理器上运行。防止重复打印输出、最终结果等的一种常见方法是让一个线程通过首先检查线程 ID 来执行这些操作。喜欢:

int id;
MPI_Comm_rank(MPI_COMM_WORLD, &id);
if (id == 0) {
printf("only process %d does this one\n", id);
}

printf("hello from process %d\n", id); // all processes do this one

当开始使用 MPI 时,我发现打印这些 ID 号以及每个线程正在处理的部分结果或数据很有帮助。帮助我更好地理解正在发生的事情。

关于c - MPI 2x 打印,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10201330/

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