如何在 Linux 中读取 CUDA .cubin 二进制文件?
我正在尝试获取 CUDA 程序中每个内核的每个线程的寄存器数量。这将帮助我使用 CUDA 占用计算器 (http://developer.download.nvidia.com/compute/cuda/CUDA_Occupancy_calculator.xls) 来确定我的程序的 GPU 的最高占用率。
但是,我已经使用 -cubin 标志生成了 .cubin 文件,但无法按照 NVIDIA (http://forums.nvidia.com/index.php?showtopic=31279) 的建议在 vim/othertexteditors 中读取它。有谁知道如何阅读它吗?
谢谢
I'm trying to get the number of registers per thread for each of my kernels in my CUDA program. This will help me use the CUDA Occupancy Calculator (http://developer.download.nvidia.com/compute/cuda/CUDA_Occupancy_calculator.xls) as to determine the highest occupancy of the GPU for my program.
However, I have generated the .cubin file using the -cubin flag but I am unable to read it in vim/othertexteditors, as suggested by NVIDIA (http://forums.nvidia.com/index.php?showtopic=31279). Does anyone know how to get to read it?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最简单的解决方案是将
-Xptxas -v
传递给nvcc
,如下所示或者,您可以使用
cudaFuncGetAttributes
API 函数,用于在运行时获取必要的值。The easiest solution is to pass
-Xptxas -v
tonvcc
like soAlternatively, you can use the
cudaFuncGetAttributes
API function to obtain the necessary values at runtime.