Searched refs:MatrixLayoutTy (Results 1 – 1 of 1) sorted by relevance
88 enum class MatrixLayoutTy { ColumnMajor, RowMajor }; enum90 static cl::opt<MatrixLayoutTy> MatrixLayout(91 "matrix-default-layout", cl::init(MatrixLayoutTy::ColumnMajor),93 cl::values(clEnumValN(MatrixLayoutTy::ColumnMajor, "column-major",95 clEnumValN(MatrixLayoutTy::RowMajor, "row-major",201 IsColumnMajor(MatrixLayout == MatrixLayoutTy::ColumnMajor) {} in ShapeInfo()406 MatrixTy() : IsColumnMajor(MatrixLayout == MatrixLayoutTy::ColumnMajor) {} in MatrixTy()409 IsColumnMajor(MatrixLayout == MatrixLayoutTy::ColumnMajor) {} in MatrixTy()411 : IsColumnMajor(MatrixLayout == MatrixLayoutTy::ColumnMajor) { in MatrixTy()1351 assert(MatrixLayout == MatrixLayoutTy::ColumnMajor && in LowerColumnMajorLoad()[all …]