diff options
author | Kevin Petit <kevin.petit@arm.com> | 2023-07-26 16:56:29 +0100 |
---|---|---|
committer | Kevin Petit <kevin.petit@arm.com> | 2023-07-26 16:59:40 +0100 |
commit | 272be321ad6ccb8bc7533c325a5faf5806e6c06f (patch) | |
tree | a392f63f7155d04729d9b21178e36847853007cb /include/spirv/unified1/spirv.cs | |
parent | 51b106461707f46d962554efe1bf56dee28958a3 (diff) | |
download | SPIRV-Headers-272be321ad6ccb8bc7533c325a5faf5806e6c06f.tar.gz SPIRV-Headers-272be321ad6ccb8bc7533c325a5faf5806e6c06f.tar.bz2 SPIRV-Headers-272be321ad6ccb8bc7533c325a5faf5806e6c06f.zip |
Add KHR suffix to Cooperative Matrix Operands
Signed-off-by: Kevin Petit <kevin.petit@arm.com>
Change-Id: I0303c1b16e46e77f0e7e95999c606cc75f7f0d4c
Diffstat (limited to 'include/spirv/unified1/spirv.cs')
-rw-r--r-- | include/spirv/unified1/spirv.cs | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/include/spirv/unified1/spirv.cs b/include/spirv/unified1/spirv.cs index d8aab3a..222ac09 100644 --- a/include/spirv/unified1/spirv.cs +++ b/include/spirv/unified1/spirv.cs @@ -1287,21 +1287,21 @@ namespace Spv public enum CooperativeMatrixOperandsShift { - MatrixASignedComponents = 0, - MatrixBSignedComponents = 1, - MatrixCSignedComponents = 2, - MatrixResultSignedComponents = 3, - SaturatingAccumulation = 4, + MatrixASignedComponentsKHR = 0, + MatrixBSignedComponentsKHR = 1, + MatrixCSignedComponentsKHR = 2, + MatrixResultSignedComponentsKHR = 3, + SaturatingAccumulationKHR = 4, } public enum CooperativeMatrixOperandsMask { MaskNone = 0, - MatrixASignedComponents = 0x00000001, - MatrixBSignedComponents = 0x00000002, - MatrixCSignedComponents = 0x00000004, - MatrixResultSignedComponents = 0x00000008, - SaturatingAccumulation = 0x00000010, + MatrixASignedComponentsKHR = 0x00000001, + MatrixBSignedComponentsKHR = 0x00000002, + MatrixCSignedComponentsKHR = 0x00000004, + MatrixResultSignedComponentsKHR = 0x00000008, + SaturatingAccumulationKHR = 0x00000010, } public enum CooperativeMatrixLayout |