cuda.core.experimental.launch#

cuda.core.experimental.launch(stream: Union[Stream, IsStreamT], LaunchConfig 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 by LaunchConfig dataclass.

  • kernel (Kernel) – Kernel to launch.

  • *kernel_args (Any) – Variable length argument list that is provided to the launching kernel.