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
- 
sTypeis a VkStructureType value identifying this structure.
- 
pNextisNULLor a pointer to a structure extending this structure.
- 
tensorMemoryBarrierCountis the length of thepTensorMemoryBarriersarray.
- 
pTensorMemoryBarriersis 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.