gpt4 book ai didi

c++ - 在 MPI_Reduce 中传递和插入 vector

转载 作者:太空宇宙 更新时间:2023-11-04 16:00:40 25 4
gpt4 key购买 nike

我需要缩减节点从其他节点获取元素列表的拷贝(存储在 vector 中)。我定义了自己的还原函数,但它不起作用。程序终止/崩溃。

这是代码:

#include <iostream>
#include "mpi.h"
#include <vector>

using namespace std;

void pushTheElem(vector<int>* in, vector<int>* inout, int *len, MPI_Datatype *datatype)
{
vector<int>::iterator it;
for (it = in->begin(); it < in->end(); it++)
{
inout->push_back(*it);
}
}

int main(int argc, char **argv)
{
int numOfProc, procID;
vector<int> vect, finalVect;

MPI_Init(&argc, &argv);
MPI_Comm_size(MPI_COMM_WORLD, &numOfProc);
MPI_Comm_rank(MPI_COMM_WORLD, &procID);

MPI_Op myOp;
MPI_Op_create((MPI_User_function*)pushTheElem, true, &myOp);

for (int i = 0; i < 5; i++)
{
vect.push_back(procID);
}

MPI_Reduce(&vect, &finalVect, 5, MPI_INT, myOp, 0, MPI_COMM_WORLD);

if (procID == 0)
{
vector<int>::iterator it;
cout << "Final vector elements: " << endl;

for (it = finalVect.begin(); it < finalVect.end(); it++)
cout << *it << endl;
}

MPI_Finalize();
return 0;
}

最佳答案

您似乎想从所有进程中收集所有元素。这不是减少,而是收集操作。缩减将多个相同长度的数组合并为一个特定长度的数组:

MPI_Reduce

情况并非如此,当组合两个数组时会产生一个长度等于输入数组之和的数组。使用 MPI,您不能像在缩减操作中那样简单地使用指针进行操作。您不能使用 MPI 发送指针,因为进程具有单独的地址空间。 MPI 接口(interface)确实使用指针,但仅使用包含已知类型和已知大小的数据区域。

您可以使用 MPI_Gather 轻松完成任务。

MPI_Gather

// vect.size() must be the same on every process, otherwise use MPI_Gatherv
// finalVect is only needed on the root.
if (procID == 0) finalVect.resize(numOfProc * vect.size());
MPI_Gather(vect.data(), 5, MPI_INT, finalVect.data(), 5, MPI_INT, 0, MPI_COMM_WORLD);

关于c++ - 在 MPI_Reduce 中传递和插入 vector ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45102240/

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