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 a valid VkTensorMemoryBarrierARM structure

See Also

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.

Copyright 2014-2025 The Khronos Group Inc.

SPDX-License-Identifier: CC-BY-4.0