! Configure the kernel launch. * * \see configure */
| 2989 | * \see configure |
| 2990 | */ |
| 2991 | inline KernelLauncher operator()(dim3 grid, dim3 block, unsigned int smem = 0, |
| 2992 | cudaStream_t stream = 0) const { |
| 2993 | return this->configure(grid, block, smem, stream); |
| 2994 | } |
| 2995 | /*! Configure the kernel launch. |
| 2996 | * |
| 2997 | * \param grid The thread grid dimensions for the launch. |