Home
last modified time | relevance | path

Searched refs:MatrixLayoutTy (Results 1 – 1 of 1) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A DLowerMatrixIntrinsics.cpp72 enum class MatrixLayoutTy { ColumnMajor, RowMajor }; enum
74 static cl::opt<MatrixLayoutTy> MatrixLayout(
75 "matrix-default-layout", cl::init(MatrixLayoutTy::ColumnMajor),
77 cl::values(clEnumValN(MatrixLayoutTy::ColumnMajor, "column-major",
79 clEnumValN(MatrixLayoutTy::RowMajor, "row-major",
219 IsColumnMajor(MatrixLayout == MatrixLayoutTy::ColumnMajor) {} in MatrixTy()
222 IsColumnMajor(MatrixLayout == MatrixLayoutTy::ColumnMajor) {} in MatrixTy()
224 : IsColumnMajor(MatrixLayout == MatrixLayoutTy::ColumnMajor) { in MatrixTy()
346 IsColumnMajor(MatrixLayout == MatrixLayoutTy::ColumnMajor) {} in ShapeInfo()
862 assert(MatrixLayout == MatrixLayoutTy::ColumnMajor && in LowerColumnMajorLoad()
[all …]