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 程序,该程序将在运行时执行多次。我想知道我是否可以构建一次,然后在需要时输入不同的参数。这行得通吗?
是的你可以。您只需在每次要使用内核时重复 clSetKernelArg 和 clEnqueuNDRangeKernel 调用。