! Select a kernel. * * \param name The name of the kernel (unmangled and without * template arguments). * \param options A vector of options to be passed to the NVRTC * compiler when compiling this kernel. */
| 3183 | * compiler when compiling this kernel. |
| 3184 | */ |
| 3185 | inline Kernel kernel(std::string name, |
| 3186 | jitify::detail::vector<std::string> options = 0) const { |
| 3187 | return Kernel(*this, name, options); |
| 3188 | } |
| 3189 | /*! Select a kernel. |
| 3190 | * |
| 3191 | * \see kernel |