cuda.core.experimental.launch¶
- cuda.core.experimental.launch(stream, config, kernel, *kernel_args)¶
Launches a
Kernelobject 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 byLaunchConfigdataclass.kernel (
Kernel) – Kernel to launch.*kernel_args (Any) – Variable length argument list that is provided to the launching kernel.