我很难从所有处理器收集一些数据到根目录,这是我想要做的一个例子:
我在每个处理器中有几对(实际上它们是边缘),理想情况下希望将它们发送到根,或者如果没有办法我可以发送它们相应的索引(一个数字而不是对。
例如:
Processor 0: sends {(0,5), (1,6)} to root, or it sould send {5,17}
Processor 1: sends {(2,3)} to root, or it sould send {14}
Processor 2: sends {} to root, or it sould send {}
Processor 3: sends {(4,0)} to root, or it sould send {20}
我想知道存储对或数字并发送和接收它们的最佳方式是什么。理想情况下,我更喜欢将它们存储在二维向量中,因为从一开始我就不知道我需要多少空间,然后在二维向量中再次接收它们。我知道这可能不可能或可能非常复杂。
这是我正在寻找但不知道如何在 MPI 中实现的过程的伪代码。
vector<vector<int > >allSelectedEdges;
vector<vector<int > >selectedEdgesLocal;
int edgeCount=0;
if(my_rank!=0){
for(int i = 0; i < rows; ++i)
for(int j = 0; j < nVertex; ++j)
if (some conditions)
{
vector<int> tempEdge;
tempEdge.push_back(displs[my_rank]+i);
tempEdge.push_back(j);
selectedEdgesLocal.push_back(tempEdge);
edgeCount++;
}
}
"send selectedEdgesLocal to root"
}else
{
"root recieve sselectedEdgesLocal and store in allSelectedEdges"
}
我也考虑过 MPI_Gatherv,但似乎没有帮助。从这里得到想法
vector<vector<int > >selectedEdgesLocal;
int edgeCount=0;
for(int i = 0; i < rows; ++i)
for(int j = 0; j < nVertex; ++j)
if (some conditions)
{
vector<int> tempEdge;
tempEdge.push_back(displs[my_rank]+i);
tempEdge.push_back(j);
selectedEdgesLocal.push_back(tempEdge);
edgeCount++;
}
int NumdgesToAdd;
MPI_Reduce(&edgeCount, &NumdgesToAdd, 1, MPI_INT, MPI_SUM, 0, MPI_COMM_WORLD);
vector<vector<int > > allSelectedEdges(NumdgesToAdd);
int rcounts[comm_size];
int rdisp[comm_size];
int sumE=0;
for(int i=0; i<comm_size; ++i) {
rcounts[i] = edgeCount;
rdisp[i]=sumE;
sumE+=edgeCount;
}
MPI_Gatherv(&selectedEdgesLocal.front(), rcounts[my_rank], MPI_INT, &allSelectedEdges.front(), rcounts, rdisp, MPI_INT, 0, MPI_COMM_WORLD);