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.
有没有一种方法可以在 JOCL 中将标量参数传递给内核而不创建新数组?在 C++ 中,可以简单地将标量参数(例如 int)转换为 void*
是的,有一些方法,如 putArg(float)、putArg(int),它们将标量参数传递给内核。
看看他们的例子。