Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
例如,我有 6 个 MPI 节点形成一个 1D 网格。在主进程中,我有一些网格边缘的值:
[1 2 3 4 5]
我想将这些值分配给与相应边相邻的两个节点。也就是说,我想在节点之间得到以下数据分布:
1 | 1 2 | 2 3 | 3 4 | 4 5 | 5
执行此操作的最佳方法是什么?似乎这不能通过一个MPI_Scatter电话来完成。
MPI_Scatter