Function Prototype
vkCmdCudaLaunchKernelNV
Dispatch compute work items
To record a CUDA kernel launch, call:
void vkCmdCudaLaunchKernelNV(
VkCommandBuffer commandBuffer,
const VkCudaLaunchInfoNV* pLaunchInfo);
pub fn cmd_cuda_launch_kernel_nv(
command_buffer: vk::CommandBuffer,
p_launch_info: *const vk::CudaLaunchInfoNV,
);
commandBufferis the command buffer into which the command will be recorded.pLaunchInfois a pointer to a VkCudaLaunchInfoNV structure in which the grid (similar to workgroup) dimension, function handle and related arguments are defined.
When the command is executed, a global workgroup consisting of
gridDimX × gridDimY × gridDimZ local
workgroups is assembled.
Valid Usage (Implicit)
VUID-vkCmdCudaLaunchKernelNV-commandBuffer-parameter
commandBuffer must be a valid VkCommandBuffer handle
VUID-vkCmdCudaLaunchKernelNV-pLaunchInfo-parameter
pLaunchInfo must be a valid pointer to a valid VkCudaLaunchInfoNV structure
VUID-vkCmdCudaLaunchKernelNV-commandBuffer-recording
commandBuffer must be in the recording state
VUID-vkCmdCudaLaunchKernelNV-commandBuffer-cmdpool
The VkCommandPool that commandBuffer was allocated from must support VK_QUEUE_COMPUTE_BIT, or VK_QUEUE_GRAPHICS_BIT operations
VUID-vkCmdCudaLaunchKernelNV-suspended
This command must not be called between suspended render pass instances
VUID-vkCmdCudaLaunchKernelNV-videocoding
This command must only be called outside of a video coding scope
Host Synchronization
- Host access to the
VkCommandPoolthatcommandBufferwas allocated from must be externally synchronized
Parent
VK_NV_cuda_kernel_launchType
Function Prototype
Command Buffer Level
primarysecondary
Queue Types
VK_QUEUE_GRAPHICS_BITVK_QUEUE_COMPUTE_BIT
Command Type
action