C Specification
The VkPhysicalDeviceDescriptorHeapTensorPropertiesARM structure is
defined as:
// Provided by VK_EXT_descriptor_heap with VK_ARM_tensors
typedef struct VkPhysicalDeviceDescriptorHeapTensorPropertiesARM {
VkStructureType sType;
void* pNext;
VkDeviceSize tensorDescriptorSize;
VkDeviceSize tensorDescriptorAlignment;
size_t tensorCaptureReplayOpaqueDataSize;
} VkPhysicalDeviceDescriptorHeapTensorPropertiesARM;
Members
-
sTypeis a VkStructureType value identifying this structure. -
pNextisNULLor a pointer to a structure extending this structure. -
tensorDescriptorSizespecifies the maximum size of tensor descriptors written by vkWriteResourceDescriptorsEXT. -
tensorDescriptorAlignmentspecifies the required alignment of tensor descriptors within a resource heap. It must be a power-of-two value, and less than or equal totensorDescriptorSize. -
tensorCaptureReplayOpaqueDataSizespecifies the size of the opaque capture/replay data for an tensor.
Description
If the VkPhysicalDeviceDescriptorHeapTensorPropertiesARM structure is included in the pNext chain of the
VkPhysicalDeviceProperties2 structure passed to
vkGetPhysicalDeviceProperties2, it is filled in with each
corresponding implementation-dependent property.
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.