我可以将特定数据预取到 CUDA 内核中的特定缓存级别吗?
据我所知,Fermi GPU 支持预取 L1 或 L2 缓存。然而,在CUDA参考手册中我找不到任何相关内容。
CUDA 允许我的内核代码将特定数据预取到特定级别的缓存吗?
I understand that Fermi GPUs support prefetching to L1 or L2 cache. However, in the CUDA reference manual I can not find any thing about it.
Dues CUDA allow my kernel code to prefetch specific data to a specific level of cache?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,不是指令级别的,而是有关 GPU 预取的详细信息,请参见此处:
多线程感知GPGPU 应用程序的预取机制
(2010 年 ACM 微架构研讨会上的论文)
您可以在 nVIDIA 的 PTX ISA参考文档;相关说明为
预取
和prefetchu
。Well not at instruction level but detailed information about prefetching in GPUs in here:
Many-Thread Aware Prefetching Mechanisms for GPGPU Applications
(paper in the the ACM symposium on microarchitecture 2010)
You can find instruction reference in nVIDIA's PTX ISA reference document; the relevant instructions are
prefetch
andprefetchu
.