Lines Matching refs:MatrixLayoutTy
79 enum class MatrixLayoutTy { ColumnMajor, RowMajor }; enum
81 static cl::opt<MatrixLayoutTy> MatrixLayout(
82 "matrix-default-layout", cl::init(MatrixLayoutTy::ColumnMajor),
84 cl::values(clEnumValN(MatrixLayoutTy::ColumnMajor, "column-major",
86 clEnumValN(MatrixLayoutTy::RowMajor, "row-major",
205 IsColumnMajor(MatrixLayout == MatrixLayoutTy::ColumnMajor) {} in ShapeInfo()
363 MatrixTy() : IsColumnMajor(MatrixLayout == MatrixLayoutTy::ColumnMajor) {} in MatrixTy()
366 IsColumnMajor(MatrixLayout == MatrixLayoutTy::ColumnMajor) {} in MatrixTy()
368 : IsColumnMajor(MatrixLayout == MatrixLayoutTy::ColumnMajor) { in MatrixTy()
1178 assert(MatrixLayout == MatrixLayoutTy::ColumnMajor && in LowerColumnMajorLoad()
1241 assert(MatrixLayout == MatrixLayoutTy::ColumnMajor && in LowerColumnMajorStore()
1336 MatrixLayout != MatrixLayoutTy::ColumnMajor) in lowerDotProduct()
1798 assert(MatrixLayout == MatrixLayoutTy::ColumnMajor && in emitSIMDTiling()
1877 if (MatrixLayout == MatrixLayoutTy::ColumnMajor in LowerMatrixMultiplyFused()
1892 if (MatrixLayout == MatrixLayoutTy::ColumnMajor) { in LowerMatrixMultiplyFused()
1920 if (!MatMul->hasOneUse() || MatrixLayout != MatrixLayoutTy::ColumnMajor) in LowerMatrixMultiplyFused()