Structures
VkCooperativeMatrixPropertiesNV
Structure specifying cooperative matrix properties
The VkCooperativeMatrixPropertiesNV structure is defined as:
typedef struct VkCooperativeMatrixPropertiesNV {
VkStructureType sType;
void* pNext;
uint32_t MSize;
uint32_t NSize;
uint32_t KSize;
VkComponentTypeNV AType;
VkComponentTypeNV BType;
VkComponentTypeNV CType;
VkComponentTypeNV DType;
VkScopeNV scope;
} VkCooperativeMatrixPropertiesNV;
sTypeis a VkStructureType value identifying this structure.pNextisNULLor a pointer to a structure extending this structure.MSizeis the number of rows in matrices A, C, and D.KSizeis the number of columns in matrix A and rows in matrix B.NSizeis the number of columns in matrices B, C, D.ATypeis the component type of matrix A, of type VkComponentTypeNV.BTypeis the component type of matrix B, of type VkComponentTypeNV.CTypeis the component type of matrix C, of type VkComponentTypeNV.DTypeis the component type of matrix D, of type VkComponentTypeNV.scopeis the scope of all the matrix types, of type VkScopeNV.
If some types are preferred over other types (e.g. for performance), they should appear earlier in the list enumerated by vkGetPhysicalDeviceCooperativeMatrixPropertiesNV.
At least one entry in the list must have power of two values for all of
MSize, KSize, and NSize.
Valid Usage (Implicit)
VUID-VkCooperativeMatrixPropertiesNV-sType-sType
sType must be VK_STRUCTURE_TYPE_COOPERATIVE_MATRIX_PROPERTIES_NV
VUID-VkCooperativeMatrixPropertiesNV-pNext-pNext
pNext must be NULL