Structures

VkTensorDependencyInfoARM

Structure specifying tensor dependency information for a synchronization command

The VkTensorDependencyInfoARM structure is defined as:

typedef struct VkTensorDependencyInfoARM {
    VkStructureType sType;
    const void* pNext;
    uint32_t tensorMemoryBarrierCount;
    const VkTensorMemoryBarrierARM* pTensorMemoryBarriers;
} VkTensorDependencyInfoARM;
  • sType is a VkStructureType value identifying this structure.
  • pNext is NULL or a pointer to a structure extending this structure.
  • tensorMemoryBarrierCount is the length of the pTensorMemoryBarriers array.
  • pTensorMemoryBarriers is a pointer to an array of VkTensorMemoryBarrierARM structures defining memory dependencies between tensors.

Valid Usage (Implicit)

VUID-VkTensorDependencyInfoARM-sType-sType

sType must be VK_STRUCTURE_TYPE_TENSOR_DEPENDENCY_INFO_ARM

VUID-VkTensorDependencyInfoARM-pTensorMemoryBarriers-parameter

pTensorMemoryBarriers must be a valid pointer to a valid VkTensorMemoryBarrierARM structure