We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a1d568 commit 25f5019Copy full SHA for 25f5019
1 file changed
include/dxc/DXIL/DxilConstants.h
@@ -204,6 +204,13 @@ enum class MatrixScope : uint32_t {
204
ThreadGroup = 2,
205
};
206
207
+enum class LinalgMatrixLayout : uint32_t {
208
+ RowMajor = 0,
209
+ ColumnMajor = 1,
210
+ MulOptimal = 2,
211
+ OuterProductOptimal = 3,
212
+};
213
+
214
// Must match D3D_INTERPOLATION_MODE
215
enum class InterpolationMode : uint8_t {
216
Undefined = 0,
0 commit comments