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.
我目前正在学习 OpenCL 并构建多个内核,每个函数都需要一个缓冲区,因此需要一个缓冲区数组。如何构建这样的数据结构?有人可以给我一个缓冲区结构的示例,以便我可以声明这些结构的数组吗?
如果您使用的是 C++ 绑定,则可以使用向量而不是原始数组。
因此,您可以将缓冲区存储在如下数据结构中:
std::vector<cl::Buffer>