C Specification
The VkTensorExplicitTilingFormatPropertiesARM structure describes properties of a VkFormat when that format is used to describe tensor elements. These properties, like those of VkFormatProperties2, are independent of any particular tensor.
The VkTensorExplicitTilingFormatPropertiesARM structure is defined as:
// Provided by VK_ARM_tensor_controls
typedef struct VkTensorExplicitTilingFormatPropertiesARM {
VkStructureType sType;
void* pNext;
VkFormatFeatureFlags2 brick16TilingTensorFeatures;
VkFormatFeatureFlags2 brick8TilingTensorFeatures;
VkFormatFeatureFlags2 brick4TilingTensorFeatures;
VkFormatFeatureFlags2 blockUTilingTensorFeatures;
VkFormatFeatureFlags2 blockU64kTilingTensorFeatures;
} VkTensorExplicitTilingFormatPropertiesARM;
Members
-
sTypeis a VkStructureType value identifying this structure. -
pNextisNULLor a pointer to a structure extending this structure. -
brick16TilingTensorFeaturesis a bitmask of VkFormatFeatureFlagBits2 specifying features supported by tensors created with atilingparameter of VK_TENSOR_TILING_BRICK_16_WIDE_ARM. -
brick8TilingTensorFeaturesis a bitmask of VkFormatFeatureFlagBits2 specifying features supported by tensors created with atilingparameter of VK_TENSOR_TILING_BRICK_8_WIDE_ARM. -
brick4TilingTensorFeaturesis a bitmask of VkFormatFeatureFlagBits2 specifying features supported by tensors created with atilingparameter of VK_TENSOR_TILING_BRICK_4_WIDE_ARM. -
blockUTilingTensorFeaturesis a bitmask of VkFormatFeatureFlagBits2 specifying features supported by tensors created with atilingparameter of VK_TENSOR_TILING_BLOCK_U_INTERLEAVED_ARM. -
blockU64kTilingTensorFeaturesis a bitmask of VkFormatFeatureFlagBits2 specifying features supported by tensors created with atilingparameter of VK_TENSOR_TILING_BLOCK_U_INTERLEAVED_64K_ARM.
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.