Structures
VkTensorMemoryRequirementsInfoARM
Structure specifying memory requirements
The VkTensorMemoryRequirementsInfoARM structure is defined as:
typedef struct VkTensorMemoryRequirementsInfoARM {
VkStructureType sType;
const void* pNext;
VkTensorARM tensor;
} VkTensorMemoryRequirementsInfoARM;
pub struct TensorMemoryRequirementsInfoARM {
s_type: vk::StructureType,
p_next: *const c_void,
tensor: vk::TensorARM,
}
sTypeis a VkStructureType value identifying this structure.pNextisNULLor a pointer to a structure extending this structure.tensoris the tensor to query.
Valid Usage (Implicit)
VUID-VkTensorMemoryRequirementsInfoARM-sType-sType
sType must be VK_STRUCTURE_TYPE_TENSOR_MEMORY_REQUIREMENTS_INFO_ARM
VUID-VkTensorMemoryRequirementsInfoARM-pNext-pNext
pNext must be NULL
VUID-VkTensorMemoryRequirementsInfoARM-tensor-parameter
tensor must be a valid VkTensorARM handle
Parent
VK_ARM_tensorsType
Structures