作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 MPI 为 2^n 处理器实现双调排序。
我想使用 n 维 hypercube这样做是为了方便。使用 MPI_Cart_Create 我可以创建自组织维度。这样做将最大限度地提高我的流程效率,并减少我为完成它而必须吐出的 LOC 数量。
谷歌搜索和文献总是说同样的事情:
Note that an n -dimensional hypercube is an n -dimensional torus with 2 processes per coordinate direction. Thus, special support for hypercube structures is not necessary.
我还没有看到任何单个示例 + 每个坐标方向有 2 个进程的 n 维环面对我来说似乎只是个谜。有人需要建议吗?
谢谢,
最佳答案
嗯,找到了
所以这将是一个 4 维超立方体。该模式非常简单。在 n 维超立方体中,每个点都有 N 个邻居,它们在此代码中表示。请注意,应该使用此代码而不是 xoring 位掩码,因为 MPI 可以重新排序进程以适应集群的物理布局。
int rank, size; //I am process RANK and we are a total of SIZE
MPI_Init(&argc, &argv);
MPI_Comm_rank(MPI_COMM_WORLD, &rank);
MPI_Comm_size(MPI_COMM_WORLD, &size);
myFairShareOfNumber = totalNumber / size;
MPI_Comm nthCube;
int nDim=4;
int processPerDim [4]= {2,2,2,2};
int period [4]= {1,1,1,1};
MPI_Cart_create(MPI_COMM_WORLD, nDim, processPerDim, period, true, &nthCube);
int rankInDim;
MPI_Comm_rank(nthCube, &rankInDim);
int rank_source, rank_desta, rank_destb, rank_destc, rank_destd;
MPI_Cart_shift(nthCube, 0,1,&rank_source, &rank_desta);
MPI_Cart_shift(nthCube, 1,1,&rank_source, &rank_destb);
MPI_Cart_shift(nthCube, 2,1,&rank_source, &rank_destc);
MPI_Cart_shift(nthCube, 3,1,&rank_source, &rank_destd);
cerr << "I am known in the world as " << rankInDim << " my adjacents are -> " << rank_desta << "-" << rank_destb << "-" << rank_destc << "-" << rank_destd <<"\n";
关于sorting - 如何使用 MPI_CART 将进程映射到超立方体,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2384969/
我正在尝试使用 MPI 为 2^n 处理器实现双调排序。 我想使用 n 维 hypercube这样做是为了方便。使用 MPI_Cart_Create 我可以创建自组织维度。这样做将最大限度地提高我的流
我是一名优秀的程序员,十分优秀!