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 编程指南,但仍然不清楚 cuda 内核在 GPU 上的位置?换句话说,它驻留在哪个内存段中?
另外,我怎么知道我的设备支持的最大内核大小是多少?最大内核大小是否取决于设备上同时加载的内核数量?
指令存储在用户无法访问的全局内存中,但在执行期间被预取到指令缓存中。
最大内核大小在编程指南第 G.1 节中说明:200 万条指令。