Lines Matching refs:MatrixLayoutTy
78 enum class MatrixLayoutTy { ColumnMajor, RowMajor }; enum
80 static cl::opt<MatrixLayoutTy> MatrixLayout(
81 "matrix-default-layout", cl::init(MatrixLayoutTy::ColumnMajor),
83 cl::values(clEnumValN(MatrixLayoutTy::ColumnMajor, "column-major",
85 clEnumValN(MatrixLayoutTy::RowMajor, "row-major",
259 MatrixTy() : IsColumnMajor(MatrixLayout == MatrixLayoutTy::ColumnMajor) {} in MatrixTy()
262 IsColumnMajor(MatrixLayout == MatrixLayoutTy::ColumnMajor) {} in MatrixTy()
264 : IsColumnMajor(MatrixLayout == MatrixLayoutTy::ColumnMajor) { in MatrixTy()
394 IsColumnMajor(MatrixLayout == MatrixLayoutTy::ColumnMajor) {} in ShapeInfo()
1159 assert(MatrixLayout == MatrixLayoutTy::ColumnMajor && in LowerColumnMajorLoad()
1222 assert(MatrixLayout == MatrixLayoutTy::ColumnMajor && in LowerColumnMajorStore()
1317 MatrixLayout != MatrixLayoutTy::ColumnMajor) in lowerDotProduct()
1751 assert(MatrixLayout == MatrixLayoutTy::ColumnMajor && in emitSIMDTiling()
1828 if (MatrixLayout == MatrixLayoutTy::ColumnMajor in LowerMatrixMultiplyFused()
1843 if (MatrixLayout == MatrixLayoutTy::ColumnMajor) { in LowerMatrixMultiplyFused()
1871 if (!MatMul->hasOneUse() || MatrixLayout != MatrixLayoutTy::ColumnMajor) in LowerMatrixMultiplyFused()