| /llvm-project-15.0.7/mlir/unittests/Analysis/Presburger/ |
| H A D | MatrixTest.cpp | 72 EXPECT_EQ(mat.getNumRows(), 5u); in TEST() 80 EXPECT_EQ(mat.getNumRows(), 3u); in TEST() 88 EXPECT_EQ(mat.getNumRows(), 5u); in TEST() 97 EXPECT_EQ(mat.getNumRows(), 5u); in TEST() 105 EXPECT_EQ(mat.getNumRows(), 5u); in TEST() 125 EXPECT_EQ(mat.getNumRows(), 5u); in TEST() 135 EXPECT_EQ(mat.getNumRows(), 5u); in TEST() 163 EXPECT_EQ(mat.getNumRows(), 6u); in TEST() 172 EXPECT_EQ(mat.getNumRows(), 5u); in TEST() 180 EXPECT_EQ(mat.getNumRows(), 3u); in TEST() [all …]
|
| H A D | LinearTransformTest.cpp | 25 for (unsigned row = 0, nRows = m.getNumRows(); row < nRows; ++row) { in testColumnEchelonForm()
|
| /llvm-project-15.0.7/mlir/lib/Analysis/Presburger/ |
| H A D | Matrix.cpp | 70 assert((row < getNumRows() && otherRow < getNumRows()) && in swapRows() 205 for (unsigned row = 0, e = getNumRows(); row < e; ++row) in addToColumn() 210 for (unsigned row = 0, e = getNumRows(); row < e; ++row) in negateColumn() 229 assert(rowVec.size() == getNumRows() && "Invalid row vector dimension!"); in preMultiplyWithRow() 233 for (unsigned i = 0, e = getNumRows(); i < e; ++i) in preMultiplyWithRow() 243 SmallVector<int64_t, 8> result(getNumRows(), 0); in postMultiplyWithColumn() 244 for (unsigned row = 0, e = getNumRows(); row < e; row++) in postMultiplyWithColumn()
|
| H A D | Simplex.cpp | 70 assert(row < getNumRows() && "Invalid row"); in unknownFromRow() 85 assert(row < getNumRows() && "Invalid row"); in unknownFromRow() 92 assert(getNumRows() == getNumRows() && "Inconsistent tableau size"); in addZeroRow() 569 if (splitRow < getNumRows()) { in computeSymbolicIntegerLexMin() 1124 swapRows(con.back().pos, getNumRows() - 1); in removeLastConstraintRowOrientation() 1128 tableau.resizeVertically(getNumRows() - 1); in removeLastConstraintRowOrientation() 1793 if (level == basis.getNumRows() - 1) in reduceBasis() 1877 while (i < basis.getNumRows() - 1) { in reduceBasis() 1972 snapshotStack.reserve(basis.getNumRows()); in findIntegerSample() 1974 nextValueStack.reserve(basis.getNumRows()); in findIntegerSample() [all …]
|
| H A D | LinearTransform.cpp | 46 for (unsigned row = 0; row < m.getNumRows(); ++row) { in makeTransformToColumnEchelon()
|
| H A D | PWMAFunction.cpp | 107 assert(count <= output.getNumRows()); in truncateOutput()
|
| H A D | IntegerRelation.cpp | 57 inequalities.reserveRows(inequalities.getNumRows() + in append() 59 equalities.reserveRows(equalities.getNumRows() + other.getNumEqualities()); in append() 1305 inequalities(inequalities.getNumRows() - 1, getNumCols() - 1) += in addBound()
|
| /llvm-project-15.0.7/mlir/include/mlir/Analysis/Presburger/ |
| H A D | Simplex.h | 324 unsigned getNumRows() const { return tableau.getNumRows(); } in getNumRows() function
|
| H A D | Matrix.h | 75 unsigned getNumRows() const { return nRows; } in getNumRows() function
|
| H A D | IntegerRelation.h | 163 inline unsigned getNumEqualities() const { return equalities.getNumRows(); } in getNumEqualities() 166 return inequalities.getNumRows(); in getNumInequalities()
|
| H A D | PWMAFunction.h | 53 unsigned getNumOutputs() const { return output.getNumRows(); } in getNumOutputs()
|
| H A D | Utils.h | 124 unsigned getNumDivs() const { return dividends.getNumRows(); } in getNumDivs()
|
| /llvm-project-15.0.7/llvm/lib/Transforms/Scalar/ |
| H A D | LowerMatrixIntrinsics.cpp | 253 return getNumRows(); in getNumVectors() 264 unsigned getNumRows() const { in getNumRows() function in __anon8ba1aee70111::LowerMatrixIntrinsics::MatrixTy 331 return getNumRows(); in getStride() 468 if (SI.NumRows == M.getNumRows() && SI.NumColumns == M.getNumColumns()) in getMatrix() 1054 auto *TileTy = FixedVectorType::get(EltTy, StoreVal.getNumRows() * in storeMatrix() 1205 unsigned R = Result.getNumRows(); in emitMatrixMultiply() 1886 SS << M->second.getNumRows(); in prettyPrintMatrixType()
|
| /llvm-project-15.0.7/mlir/include/mlir/Dialect/SPIRV/IR/ |
| H A D | SPIRVTypes.h | 443 unsigned getNumRows() const;
|
| /llvm-project-15.0.7/clang/lib/CodeGen/ |
| H A D | CodeGenTypes.cpp | 96 MT->getNumRows() * MT->getNumColumns()); in ConvertTypeForMem() 724 MT->getNumRows() * MT->getNumColumns()); in ConvertType()
|
| H A D | CGExprScalar.cpp | 741 return MB.CreateMatrixMultiply(Ops.LHS, Ops.RHS, LHSMatTy->getNumRows(), in EmitMul() 1795 unsigned NumRows = MatrixTy->getNumRows(); in VisitMatrixSubscriptExpr()
|
| /llvm-project-15.0.7/mlir/lib/Dialect/SPIRV/IR/ |
| H A D | SPIRVOps.cpp | 3867 if (inputMatrix.getNumRows() != resultMatrix.getNumRows()) in verify() 3981 if (inputMatrix.getNumRows() != resultMatrix.getNumColumns()) in verify() 3985 if (inputMatrix.getNumColumns() != resultMatrix.getNumRows()) in verify() 4007 if (leftMatrix.getNumColumns() != rightMatrix.getNumRows()) in verify() 4027 if (leftMatrix.getNumRows() != resultMatrix.getNumRows()) in verify()
|
| H A D | SPIRVTypes.cpp | 1145 unsigned MatrixType::getNumRows() const { in getNumRows() function in MatrixType 1150 return (getImpl()->columnCount) * getNumRows(); in getNumElements()
|
| /llvm-project-15.0.7/clang/lib/AST/ |
| H A D | ASTStructuralEquivalence.cpp | 871 Mat1->getNumRows() != Mat2->getNumRows() || in IsStructurallyEquivalent()
|
| H A D | TypePrinter.cpp | 788 OS << T->getNumRows() << ", " << T->getNumColumns(); in printConstantMatrixBefore()
|
| H A D | ASTContext.cpp | 2024 Width = ElementInfo.Width * MT->getNumRows() * MT->getNumColumns(); in getTypeInfoImpl() 9275 LHS->getNumRows() == RHS->getNumRows() && in areCompatMatrixTypes()
|
| H A D | Type.cpp | 1024 return Ctx.getConstantMatrixType(elementType, T->getNumRows(), in VisitConstantMatrixType()
|
| /llvm-project-15.0.7/clang/include/clang/AST/ |
| H A D | TypeProperties.td | 235 let Read = [{ node->getNumRows() }];
|
| H A D | Type.h | 3545 unsigned getNumRows() const { return NumRows; } 3552 return getNumRows() * getNumColumns(); 3566 Profile(ID, getElementType(), getNumRows(), getNumColumns(),
|
| /llvm-project-15.0.7/clang/lib/Sema/ |
| H A D | SemaTemplateDeduction.cpp | 2021 if (MP->getNumRows() != MA->getNumRows() || in DeduceTemplateArgumentsByTypeMatch() 2091 &ConstantMatrixType::getNumRows, in DeduceTemplateArgumentsByTypeMatch()
|