Skip to content

Commit 25f5019

Browse files
committed
Add LinalgMatrixLayout to DxilConstants.h
1 parent 7a1d568 commit 25f5019

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

include/dxc/DXIL/DxilConstants.h

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,13 @@ enum class MatrixScope : uint32_t {
204204
ThreadGroup = 2,
205205
};
206206

207+
enum class LinalgMatrixLayout : uint32_t {
208+
RowMajor = 0,
209+
ColumnMajor = 1,
210+
MulOptimal = 2,
211+
OuterProductOptimal = 3,
212+
};
213+
207214
// Must match D3D_INTERPOLATION_MODE
208215
enum class InterpolationMode : uint8_t {
209216
Undefined = 0,

0 commit comments

Comments
 (0)