C Specification

The VkPhysicalDeviceExternalTensorInfoARM structure is defined as:

// Provided by VK_ARM_tensors
typedef struct VkPhysicalDeviceExternalTensorInfoARM {
    VkStructureType                       sType;
    const void*                           pNext;
    VkTensorCreateFlagsARM                flags;
    const VkTensorDescriptionARM*         pDescription;
    VkExternalMemoryHandleTypeFlagBits    handleType;
} VkPhysicalDeviceExternalTensorInfoARM;

Members

Description

Valid Usage (Implicit)
  • VUID-VkPhysicalDeviceExternalTensorInfoARM-sType-sType
    sType must be VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_EXTERNAL_TENSOR_INFO_ARM

  • VUID-VkPhysicalDeviceExternalTensorInfoARM-pNext-pNext
    pNext must be NULL

  • VUID-VkPhysicalDeviceExternalTensorInfoARM-flags-parameter
    flags must be a valid combination of VkTensorCreateFlagBitsARM values

  • VUID-VkPhysicalDeviceExternalTensorInfoARM-pDescription-parameter
    pDescription must be a valid pointer to a valid VkTensorDescriptionARM structure

  • VUID-VkPhysicalDeviceExternalTensorInfoARM-handleType-parameter
    handleType must be a valid VkExternalMemoryHandleTypeFlagBits value

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