VkTensorDependencyInfoARM(3)

Name

VkTensorDependencyInfoARM - Structure specifying tensor dependency information for a synchronization command

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 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.

Description

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 an array of tensorMemoryBarrierCount valid VkTensorMemoryBarrierARM structures

  • VUID-VkTensorDependencyInfoARM-tensorMemoryBarrierCount-arraylength
    tensorMemoryBarrierCount must be greater than 0

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.