Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我调试 cuda(v 5.0) 代码时:
例如添加两个向量我看不到调试详细信息,例如块 idx、warp 索引
显示在nvidia nsight 站点中),我只能看到 c 程序中显示的本地、调用堆栈、...。
问题是您在主机代码中设置了断点,但在设备代码中没有断点。 使用常规 VS 调试器进行调试时,调试器将在主机代码中命中断点,但在设备代码中不会。 使用 CUDA 调试器进行调试时,调试器将在设备代码中命中断点,但在主机代码中不会。