Home
last modified time | relevance | path

Searched refs:ColumnMajor (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/mlir/include/mlir/Dialect/SPIRV/IR/
H A DSPIRVCooperativeMatrixOps.td81 ColumnMajor indicates whether the values loaded from memory are arranged in
88 If ColumnMajor is false, then elements (row,*) of the result are taken in
90 ColumnMajor is true, then elements (*,col) of the result are taken in order
231 ColumnMajor indicates whether the values stored to memory are arranged in
/llvm-project-15.0.7/llvm/lib/Transforms/Scalar/
H A DLowerMatrixIntrinsics.cpp73 enum class MatrixLayoutTy { ColumnMajor, RowMajor }; enumerator
76 "matrix-default-layout", cl::init(MatrixLayoutTy::ColumnMajor),
78 cl::values(clEnumValN(MatrixLayoutTy::ColumnMajor, "column-major",
226 IsColumnMajor(MatrixLayout == MatrixLayoutTy::ColumnMajor) {} in MatrixTy()
228 : IsColumnMajor(MatrixLayout == MatrixLayoutTy::ColumnMajor) { in MatrixTy()
358 IsColumnMajor(MatrixLayout == MatrixLayoutTy::ColumnMajor) {} in ShapeInfo()
1033 assert(MatrixLayout == MatrixLayoutTy::ColumnMajor && in LowerColumnMajorLoad()
1102 assert(MatrixLayout == MatrixLayoutTy::ColumnMajor && in LowerColumnMajorStore()
1473 assert(MatrixLayout == MatrixLayoutTy::ColumnMajor && in emitSIMDTiling()
1550 if (MatrixLayout == MatrixLayoutTy::ColumnMajor in LowerMatrixMultiplyFused()
[all …]
/llvm-project-15.0.7/mlir/unittests/Dialect/Utils/
H A DStructuredOpsUtilsTest.cpp60 TEST(isRowMajorMatmul, ColumnMajor) { in TEST() argument