Calling kernels from within other kernels

I know that you can call kernels that are prefaced with global or device from within another thread, but how do I set the domain of execution for those kernels I call? Is it the standard <<<nb, nt, sm>>>>?
Thanks!
Chris

Kernels can’t call other kernels. Kernels can only call device functions (which are generally inlined).