| 402 | /// Sets the arguments for the kernel to \p args. |
| 403 | template<class... T> |
| 404 | void set_args(T&&... args) |
| 405 | { |
| 406 | BOOST_ASSERT(sizeof...(T) <= arity()); |
| 407 | |
| 408 | _set_args<0>(args...); |
| 409 | } |
| 410 | #endif // BOOST_COMPUTE_NO_VARIADIC_TEMPLATES |
| 411 | |
| 412 | #if defined(BOOST_COMPUTE_CL_VERSION_2_0) || defined(BOOST_COMPUTE_DOXYGEN_INVOKED) |
no outgoing calls