vkBindTensorMemoryARM(3)
C Specification
To attach memory to tensor objects call:
// Provided by VK_ARM_tensorsVkResult vkBindTensorMemoryARM( VkDevice device, uint32_t bindInfoCount, const VkBindTensorMemoryInfoARM* pBindInfos);Parameters
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 typeVkBindTensorMemoryInfoARM, describing tensors and memory to bind.
Description
On some implementations, itmay be more efficient to batch memory bindingsinto a single command.
VUID-vkBindTensorMemoryARM-device-parameter
devicemust be a validVkDevice handleVUID-vkBindTensorMemoryARM-pBindInfos-parameter
pBindInfosmust be a valid pointer to an array ofbindInfoCountvalidVkBindTensorMemoryInfoARM structuresVUID-vkBindTensorMemoryARM-bindInfoCount-arraylength
bindInfoCountmust be greater than0
Document Notes
For more information, see theVulkan Specification.
This page is extracted from the Vulkan Specification.Fixes and changes should be made to the Specification, not directly.