我需要有关使用 MPI 实现分布式图的建议

发布于 2024-12-10 07:26:12 字数 119 浏览 0 评论 0原文

您碰巧知道任何强大的、公认的使用 MPI 实现分布式图的软件库吗?

我所说的分布式图是指其边和顶点可以以抽象方式分布在处理器集群上的图。

我需要一个好的例子来学习。

非常感谢。

Do you happen to know any robust, well-recongnised software library which implements distributed graphs using MPI?

What I mean by distributed graph is a graph whose edges and vertices can be distributed over a cluster of processors in an abstract manner.

I need a good example to learn from.

Thank you very much.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

巴黎夜雨 2024-12-17 07:26:12

我知道唯一满足您需求的库是 Boost分布式图库

并行 BGL 主要关注分布式图。
分布式图在概念上是图,但它们的存储是
分布在多个处理器上。 [在示例中]该图已
分为三个处理器(由灰色矩形表示)。
图中的边可以是本地的(两个端点都存储在
相同的处理器)或远程(边缘的目标存储在
不同的处理器)。

The only library I'm aware of that meets your needs is the Boost distributed graph library:

The Parallel BGL is primarily concerned with distributed graphs.
Distributed graphs are conceptually graphs, but their storage is
spread across multiple processors. [In the example] the graph has been
divided among three processors (represented by the grey rectangles).
Edges in the graph may be either local (with both endpoints stored on
the same processor) or remote (the target of the edge is stored on a
different processor).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文