Graphviz 的性能
Graphiz 有多快?我想实现一个跟踪线程状态的分析器。我想实时构建和可视化等待图(!)。
这可能吗? Graphviz 是合适的匹配吗?
否则,C++ 有替代方案吗?
How fast is Graphiz? I want to implement a profiler which keeps track of threads state. I want to build and visualize waits-for graphs in real time (!).
Is this even possible? Would Graphviz be the appropriate match?
Otherwise, are there alternative for C++?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不会使用 Graphviz,因为它是为创建图形结构的图形可视化而设计的。相反,我可以建议使用 Boost Graph Library?虽然我个人没有使用过它,但 Boost 库很受尊重,当我尝试在 C++ 中查找图形时,它似乎无处不在。我认为您会发现 boost 的实现能够满足您的需求。
I would not use Graphviz because it is designed for creating graphical visualization of graph structures. Instead, might I suggest using the Boost Graph Library? While I have not used it personally, the Boost libraries are well respected, and it seems to be everywhere when I try to look for graphs in c++. I think that you will find the boost implementation will meet your needs.