VkPhysicalDeviceCooperativeMatrixMaintenance1FeaturesEXT
The VkPhysicalDeviceCooperativeMatrixMaintenance1FeaturesEXT structure
is defined as:
typedef struct VkPhysicalDeviceCooperativeMatrixMaintenance1FeaturesEXT {
VkStructureType sType;
void* pNext;
VkBool32 cooperativeMatrixProperties2;
VkBool32 cooperativeMatrixReductions;
VkBool32 cooperativeMatrixConversions;
VkBool32 cooperativeMatrixPerElementOperations;
VkBool32 cooperativeMatrixGetCoordinate;
} VkPhysicalDeviceCooperativeMatrixMaintenance1FeaturesEXT;
pub struct PhysicalDeviceCooperativeMatrixMaintenance1FeaturesEXT {
s_type: vk::StructureType,
p_next: *mut c_void,
cooperative_matrix_properties2: vk::Bool32,
cooperative_matrix_reductions: vk::Bool32,
cooperative_matrix_conversions: vk::Bool32,
cooperative_matrix_per_element_operations: vk::Bool32,
cooperative_matrix_get_coordinate: vk::Bool32,
}
This structure describes the following features:
sTypeis a VkStructureType value identifying this structure.pNextisNULLor a pointer to a structure extending this structure.- FEATURES COOPERATIVEMATRIXPROPERTIES2EXT
cooperativeMatrixProperties2indicates that the implementation supports the vkGetPhysicalDeviceCooperativeMatrixProperties2EXT command. - FEATURES COOPERATIVEMATRIXREDUCTIONSEXT
cooperativeMatrixReductionsindicates that the implementation supports theCooperativeMatrixReductionsEXTSPIR-V capability. This allows performing (row, column, 2x2, or all element) reductions on matrices. - FEATURES COOPERATIVEMATRIXCONVERSIONSEXT
cooperativeMatrixConversionsindicates that the implementation supports theCooperativeMatrixConversionsEXTSPIR-V capability. This allows converting accumulator matrices to A or B matrices. - FEATURES COOPERATIVEMATRIXPERELEMENTOPERATIONSEXT
cooperativeMatrixPerElementOperationsindicates that the implementation supports theCooperativeMatrixPerElementOperationsEXTSPIR-V capability. This allows performing element-wise operations on matrix elements using a callback function. - FEATURES COOPERATIVEMATRIXGETCOORDINATEEXT
cooperativeMatrixGetCoordinateindicates that the implementation supports theCooperativeMatrixGetCoordinateEXTSPIR-V capability. This allows querying locations for a matrix element.
If the VkPhysicalDeviceCooperativeMatrixMaintenance1FeaturesEXT structure is included in the pNext chain of the
VkPhysicalDeviceFeatures2 structure passed to
vkGetPhysicalDeviceFeatures2, it is filled in to indicate whether each
corresponding feature is supported.
If the application wishes to use a VkDevice with any features
described by VkPhysicalDeviceCooperativeMatrixMaintenance1FeaturesEXT, it must add an instance of the structure,
with the desired feature members set to VK_TRUE, to the pNext
chain of VkDeviceCreateInfo when creating the VkDevice.
Valid Usage (Implicit)
VUID-VkPhysicalDeviceCooperativeMatrixMaintenance1FeaturesEXT-sType-sType
sType must be VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_COOPERATIVE_MATRIX_MAINTENANCE_1_FEATURES_EXT