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;
pub struct TensorDependencyInfoARM {
s_type: vk::StructureType,
p_next: *const c_void,
tensor_memory_barrier_count: u32,
p_tensor_memory_barriers: *const vk::TensorMemoryBarrierARM,
}
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.
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