Lines Matching refs:MatrixLayoutTy
73 enum class MatrixLayoutTy { ColumnMajor, RowMajor }; enum
75 static cl::opt<MatrixLayoutTy> MatrixLayout(
76 "matrix-default-layout", cl::init(MatrixLayoutTy::ColumnMajor),
78 cl::values(clEnumValN(MatrixLayoutTy::ColumnMajor, "column-major",
80 clEnumValN(MatrixLayoutTy::RowMajor, "row-major",
223 MatrixTy() : IsColumnMajor(MatrixLayout == MatrixLayoutTy::ColumnMajor) {} in MatrixTy()
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()
1565 if (MatrixLayout == MatrixLayoutTy::ColumnMajor) { in LowerMatrixMultiplyFused()
1593 if (!MatMul->hasOneUse() || MatrixLayout != MatrixLayoutTy::ColumnMajor) in LowerMatrixMultiplyFused()