如何在Windows下调试MPI应用程序?
我有想要调试的 MPI 程序。
我在 Windows 下使用 mpich 2,有人知道可以帮助我的工具吗?有可能吗?
I have MPI program which I want to debug.
I use mpich 2 under Windows, so does anybody know tools that can help me? Is it even possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我对 Linux 上的并行调试器 DDT 和 Totalview 有一些经验。我看到 DDTLite 可作为 MS Visual Studio 的插件使用;我认为没有适用于任何 Windows 平台的 Totalview 版本。
所以,是的,这是可能的,但是 DDTLite 需要花钱;然而,如果没有 DDT 或 Totalview,我就无法工作。
现在生产 HPC 版本 Windows 的 Microsoft 可能已经并行化了他们的调试器,但我对此一无所知。您可以在并行程序上使用 gdb,因此在 Cygwin(或类似)下安装可能会对您有所帮助。就我个人而言,我从来没有发现 gdb 可以用于并行调试,除了极其困难之外,我很幸运能够在一个获得并行调试器并不困难的网站上工作。
I have some experience of the parallel debuggers DDT and Totalview on Linux. I see that DDTLite is available as a plug-in for MS Visual Studio; I don't think that there is a version of Totalview for any Windows platform.
So, yes, it is possible, but DDTLite costs money; however I couldn't work without either DDT or Totalview.
It's possible that Microsoft, who now produce an HPC edition of Windows, have parallelised their debugger but I have no knowledge of that. You can use gdb on parallel programs, so an installation under Cygwin (or similar) might help you. Personally I have never found gdb for parallel debugging anything other than incredibly difficult and I am fortunate to work at a site where getting a parallel debugger has not proven difficult.