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 2.x 不可能在运行时获取信息。查看新 3.0 beta 的文档,cudaFuncGetAttributes似乎可以满足您的需求。
我认为,您在编译中看到的是将在运行时使用的那个,或者至少是运行时使用的最大寄存器数。