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.
__constant__我有一个内核多次使用少量内存,__constant__每次都需要将不同的值复制到内存中。最近,我需要使这个内核多流并发。
__constant__
如何使每个流成为该__constant__内存的副本?
你不能。__constant__变量具有上下文/设备级别范围。如果您的代码仅使用“少量”常量内存,只需将其作为内核参数传递。内核参数存储在所有支持的架构上的专用常量内存库中。