pub fn launch_kernel(
func: u64,
grid: (u32, u32, u32),
block: (u32, u32, u32),
shared_bytes: u32,
stream: u64,
params: &mut [*mut c_void],
) -> Result<()>Expand description
Direct cuLaunchKernel wrapper. Caller is responsible for ensuring the
params pointer array stays valid until the launch returns.