Function Prototype
vkGetPhysicalDeviceExternalTensorPropertiesARM
Function for querying external tensor handle capabilities.
To query the external handle types supported by tensors, call:
void vkGetPhysicalDeviceExternalTensorPropertiesARM(
VkPhysicalDevice physicalDevice,
const VkPhysicalDeviceExternalTensorInfoARM* pExternalTensorInfo,
VkExternalTensorPropertiesARM* pExternalTensorProperties);
pub fn get_physical_device_external_tensor_properties_arm(
physical_device: vk::PhysicalDevice,
p_external_tensor_info: *const vk::PhysicalDeviceExternalTensorInfoARM,
p_external_tensor_properties: *mut vk::ExternalTensorPropertiesARM,
);
physicalDeviceis the physical device from which to query the tensor capabilities.pExternalTensorInfois a pointer to a VkPhysicalDeviceExternalTensorInfoARM structure describing the parameters that would be consumed by vkCreateTensorARM.pExternalTensorPropertiesis a pointer to a VkExternalTensorPropertiesARM structure in which the capabilities are returned.
Valid Usage (Implicit)
VUID-vkGetPhysicalDeviceExternalTensorPropertiesARM-physicalDevice-parameter
physicalDevice must be a valid VkPhysicalDevice handle
VUID-vkGetPhysicalDeviceExternalTensorPropertiesARM-pExternalTensorInfo-parameter
pExternalTensorInfo must be a valid pointer to a valid VkPhysicalDeviceExternalTensorInfoARM structure
VUID-vkGetPhysicalDeviceExternalTensorPropertiesARM-pExternalTensorProperties-parameter
pExternalTensorProperties must be a valid pointer to a VkExternalTensorPropertiesARM structure
Parent
VK_ARM_tensorsType
Function Prototype