| 415 | /// Sets the arguments for the kernel to \p args. |
| 416 | template<class... T> |
| 417 | void set_args(T&&... args) |
| 418 | { |
| 419 | BOOST_ASSERT(sizeof...(T) <= arity()); |
| 420 | |
| 421 | _set_args<0>(args...); |
| 422 | } |
| 423 | #endif // BOOST_COMPUTE_NO_VARIADIC_TEMPLATES |
| 424 | |
| 425 | #if defined(BOOST_COMPUTE_CL_VERSION_2_0) || defined(BOOST_COMPUTE_DOXYGEN_INVOKED) |
no outgoing calls