Home
last modified time | relevance | path

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

/llvm-project-15.0.7/mlir/include/mlir/Analysis/Presburger/
H A DLinearTransform.h43 SmallVector<int64_t, 8> preMultiplyWithRow(ArrayRef<int64_t> rowVec) const { in preMultiplyWithRow() function
44 return matrix.preMultiplyWithRow(rowVec); in preMultiplyWithRow()
H A DMatrix.h150 SmallVector<int64_t, 8> preMultiplyWithRow(ArrayRef<int64_t> rowVec) const;
/llvm-project-15.0.7/mlir/lib/Analysis/Presburger/
H A DLinearTransform.cpp123 SmallVector<int64_t, 8> newEq = preMultiplyWithRow(eq.drop_back()); in applyTo()
133 SmallVector<int64_t, 8> newIneq = preMultiplyWithRow(ineq.drop_back()); in applyTo()
H A DMatrix.cpp228 Matrix::preMultiplyWithRow(ArrayRef<int64_t> rowVec) const { in preMultiplyWithRow() function in Matrix
/llvm-project-15.0.7/mlir/unittests/Analysis/Presburger/
H A DLinearTransformTest.cpp27 transform.preMultiplyWithRow(m.getRow(row)); in testColumnEchelonForm()