Searched refs:MatrixLayoutTy (Results 1 – 1 of 1) sorted by relevance
79 enum class MatrixLayoutTy { ColumnMajor, RowMajor }; enum81 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()[all …]