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.
我有一个广泛使用 bitset 模板的现有 C++ 代码。我正在将此代码移植到 CUDA C,而且我对 CUDA 编程真的很陌生。我可以将 bitset 模板用作“共享”变量吗?
据我所知,你根本不能bitset在 CUDA 中使用容器,因为它没有设备实现。不过,用常规数组来实现它应该是微不足道的,您可以将数组放在共享内存中。
bitset