| 275 | /// Sets the arguments for the kernel to \p args. |
| 276 | template<class... T> |
| 277 | void set_args(T&&... args) |
| 278 | { |
| 279 | BOOST_ASSERT(sizeof...(T) <= arity()); |
| 280 | |
| 281 | _set_args<0>(args...); |
| 282 | } |
| 283 | #endif // BOOST_COMPUTE_NO_VARIADIC_TEMPLATES |
| 284 | |
| 285 | #if defined(CL_VERSION_2_0) || defined(BOOST_COMPUTE_DOXYGEN_INVOKED) |
no outgoing calls