Skip to content

Commit b0058d6

Browse files
committed
Add clarifying comments back and fix typo
1 parent 5fcd04f commit b0058d6

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

proposals/0035-linalg-matrix.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1957,7 +1957,9 @@ struct PSVLinAlgMatrixConstruction0 {
19571957
19581958
enum class PSVLinAlgThreadMatrixVectorMultiplyFlag : uint8_t {
19591959
None = 0,
1960-
// MatrixTransposed: The matrix is loaded from MulOptimalTranspose layout.
1960+
// If neither MatrixTransposed or MatrixNonMulOptimalLayout is set, the matrix
1961+
// is only loaded from MulOptimal layout.
1962+
// MatrixTransposed: The matrix is loaded from MulOptimalTransposed layout.
19611963
MatrixTransposed = 1 << 0,
19621964
// MatrixNonMulOptimalLayout: The matrix is loaded from a non-MulOptimal
19631965
// layout.
@@ -2172,7 +2174,9 @@ semantic meanings.
21722174
21732175
RDAT_ENUM_START(LinAlgThreadMatrixVectorMultiplyFlag, uint8_t)
21742176
RDAT_ENUM_VALUE(None, 0)
2175-
// MatrixTransposed: The matrix is loaded from MulOptimalTranspose layout.
2177+
// If neither MatrixTransposed or MatrixNonMulOptimalLayout is set, the matrix
2178+
// is only loaded from MulOptimal layout.
2179+
// MatrixTransposed: The matrix is loaded from MulOptimalTransposed layout.
21762180
RDAT_ENUM_VALUE(MatrixTransposed, 1 << 0)
21772181
// MatrixNonMulOptimalLayout: The matrix is loaded from a non-MulOptimal
21782182
// layout.

0 commit comments

Comments
 (0)