当cuda-gdb中数组值更改时设置断点

发布于 2024-10-16 17:29:47 字数 89 浏览 2 评论 0原文

有没有办法在数组的特定索引发生变化时在 GDB 中设置断点?

也就是说,我可以让它在 array[25] 发生变化时停止吗?当然,这会发生在内核中。

Is there a way to set a breakpoint in GDB for when a particular index of an array changes?

That is, can I make it stop when array[25] changes? This would be happening in the kernel, of course.

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

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

发布评论

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

评论(2

笑红尘 2024-10-23 17:29:47

如果它遵循与 gdb 相同的命令,则该命令将类似于 watch array[25]

编辑:截至 2010 年 9 月,观察点尚未实现,您需要一个观察点来执行此操作。 http://forums.nvidia.com/index.php?showtopic=180367

If it follows the same commands as gdb, the command would be something like watch array[25]

Edit: As of September 2010 watchpoints were not implemented, and you need a watchpoint to do this. http://forums.nvidia.com/index.php?showtopic=180367

友欢 2024-10-23 17:29:47

您可以使用 http://developer.nvidia.com/object/nsight.html调试目的。

You may use http://developer.nvidia.com/object/nsight.html for debugging purposes.

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