C Specification
The VkTensorDependencyInfoARM
structure is defined as:
// Provided by VK_ARM_tensors
typedef struct VkTensorDependencyInfoARM {
VkStructureType sType;
const void* pNext;
uint32_t tensorMemoryBarrierCount;
const VkTensorMemoryBarrierARM* pTensorMemoryBarriers;
} VkTensorDependencyInfoARM;
Members
-
sType
is a VkStructureType value identifying this structure. -
pNext
isNULL
or a pointer to a structure extending this structure. -
tensorMemoryBarrierCount
is the length of thepTensorMemoryBarriers
array. -
pTensorMemoryBarriers
is a pointer to an array of VkTensorMemoryBarrierARM structures defining memory dependencies between tensors.
Document Notes
For more information, see the Vulkan Specification
This page is extracted from the Vulkan Specification. Fixes and changes should be made to the Specification, not directly.