cuda.core.experimental.launch#
- cuda.core.experimental.launch(
- stream: Stream | IsStreamT,
- config: LaunchConfig,
- kernel: Kernel,
- *kernel_args,
Launches a
Kernel
object with launch-time configuration.- Parameters:
stream (
Stream
) – The stream establishing the stream ordering semantic of a launch.config (
LaunchConfig
) – Launch configurations inline with options provided byLaunchConfig
dataclass.kernel (
Kernel
) – Kernel to launch.*kernel_args (Any) – Variable length argument list that is provided to the launching kernel.