Function Prototype
vkBindTensorMemoryARM
Bind device memory to tensor objects
To attach memory to tensor objects call:
VkResult vkBindTensorMemoryARM(
VkDevice device,
uint32_t bindInfoCount,
const VkBindTensorMemoryInfoARM* pBindInfos);
pub fn bind_tensor_memory_arm(
device: vk::Device,
bind_info_count: u32,
p_bind_infos: *const vk::BindTensorMemoryInfoARM,
) -> vk::Result;
deviceis the logical device that owns the buffers and memory.bindInfoCountis the number of elements inpBindInfos.pBindInfosis a pointer to an array of structures of type VkBindTensorMemoryInfoARM, describing tensors and memory to bind.
On some implementations, it may be more efficient to batch memory bindings into a single command.
Valid Usage (Implicit)
VUID-vkBindTensorMemoryARM-device-parameter
device must be a valid VkDevice handle
VUID-vkBindTensorMemoryARM-pBindInfos-parameter
pBindInfos must be a valid pointer to an array of bindInfoCount valid VkBindTensorMemoryInfoARM structures
VUID-vkBindTensorMemoryARM-bindInfoCount-arraylength
bindInfoCount must be greater than 0
Parent
VK_ARM_tensorsType
Function Prototype