GPGPUsim PTX提取

发布于 2025-01-12 19:06:20 字数 177 浏览 0 评论 0原文

正如标题所说,我正在学习如何使用GPGPUsim。当我阅读手册的“PTX提取”部分时,我发现它说“在CUDA版本4.0及更高版本中,用于提取ptx和sass的fat cubin文件不再可用。 “这让我很困惑。如何理解这一点,CUDA 4.0版本及更高版本中发生了什么。 不管怎样谢谢你:)

Just as the title says, I'm learning how to use the GPGPUsim. And when I read the "PTX extraction" section of the manual, I found that it says "In CUDA version 4.0 and later, the fat cubin file used to extract the ptx and sass is not available any more." which makes me confused. How to understand this, what happened in CUDA version 4.0 and later.
Thank you anyway :)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

淡水深流 2025-01-19 19:06:20

CUDA 4.0发布时(2011年!),设备工具链被切换到完全ELF 基于对象模型。在此之前,使用的是纯文本文件,其中包含用于发出的 SASS 代码的编码二进制部分和用于 PTX 的纯文本。因此,要从 ELF CUDA 对象中提取 PTX 或 SASS 需要一个实用程序 cuobjdump 以访问必需的代码。

因此 CUDA 4.0 之前/之后的区别。

When CUDA 4.0 was released (in 2011!), the device toolchain was switched to a fully ELF based object model. Prior to that, a plain text file with encoded binary sections for emitted SASS code and plain text for PTX was used. As a result, to extract PTX or SASS from an ELF CUDA object requires a utility cuobjdump to access the requisite code.

Thus the pre/post CUDA 4.0 distinction.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文