当cuda-gdb中数组值更改时设置断点
有没有办法在数组的特定索引发生变化时在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果它遵循与 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
您可以使用 http://developer.nvidia.com/object/nsight.html调试目的。
You may use http://developer.nvidia.com/object/nsight.html for debugging purposes.