Structures
VkDeviceTensorMemoryRequirementsARM
(None)
The VkDeviceTensorMemoryRequirementsARM structure is defined as:
typedef struct VkDeviceTensorMemoryRequirementsARM {
VkStructureType sType;
const void* pNext;
const VkTensorCreateInfoARM* pCreateInfo;
} VkDeviceTensorMemoryRequirementsARM;
pub struct DeviceTensorMemoryRequirementsARM {
s_type: vk::StructureType,
p_next: *const c_void,
p_create_info: *const vk::TensorCreateInfoARM,
}
sTypeis a VkStructureType value identifying this structure.pNextisNULLor a pointer to a structure extending this structure.pCreateInfois a pointer to a VkTensorCreateInfoARM structure containing parameters affecting the creation of the tensor to query.
Valid Usage (Implicit)
VUID-VkDeviceTensorMemoryRequirementsARM-sType-sType
sType must be VK_STRUCTURE_TYPE_DEVICE_TENSOR_MEMORY_REQUIREMENTS_ARM
VUID-VkDeviceTensorMemoryRequirementsARM-pNext-pNext
pNext must be NULL
VUID-VkDeviceTensorMemoryRequirementsARM-pCreateInfo-parameter
pCreateInfo must be a valid pointer to a valid VkTensorCreateInfoARM structure
Parent
VK_ARM_tensorsType
Structures