Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DMatrixUtils.h33 unsigned NumRows; member
66 TileInfo(unsigned NumRows, unsigned NumColumns, unsigned NumInner, in TileInfo()
68 : NumRows(NumRows), NumColumns(NumColumns), NumInner(NumInner), in TileInfo()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLowerMatrixIntrinsics.cpp350 unsigned NumRows; member
356 : NumRows(NumRows), NumColumns(NumColumns), in ShapeInfo()
364 return NumRows == other.NumRows && NumColumns == other.NumColumns; in operator ==()
372 return NumRows != 0; in operator bool()
377 return NumRows; in getStride()
384 return NumRows; in getNumVectors()
455 SI.NumRows * SI.NumColumns && in getMatrix()
1369 const unsigned R = LShape.NumRows; in isFusionProfitable()
1473 const unsigned R = LShape.NumRows; in emitSIMDTiling()
1549 const unsigned R = LShape.NumRows; in LowerMatrixMultiplyFused()
[all …]
H A DLoopInterchange.cpp260 unsigned NumRows = DepMatrix.size(); in isLegalToInterChangeLoops() local
262 for (unsigned Row = 0; Row < NumRows; ++Row) { in isLegalToInterChangeLoops()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/IR/
H A DMatrixBuilder.h151 Value *ColumnIdx, unsigned NumRows) { in CreateMatrixInsert() argument
155 ColumnIdx->getType(), NumRows)), in CreateMatrixInsert()
236 unsigned NumRows, Twine const &Name = "") {
243 Value *NumRowsV = B.getIntN(MaxWidth, NumRows);
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DMatrixUtils.cpp88 CreateLoop(ColBody, ColLatch, B.getInt64(NumRows), B.getInt64(TileSize), in CreateTiledLoops()
/freebsd-13.1/contrib/llvm-project/llvm/lib/IR/
H A DVerifier.cpp5156 ConstantInt *NumRows; in visitIntrinsicCall() local
5163 NumRows = cast<ConstantInt>(Call.getArgOperand(2)); in visitIntrinsicCall()
5172 NumRows = cast<ConstantInt>(Call.getArgOperand(1)); in visitIntrinsicCall()
5180 NumRows = cast<ConstantInt>(Call.getArgOperand(3)); in visitIntrinsicCall()
5188 NumRows = cast<ConstantInt>(Call.getArgOperand(4)); in visitIntrinsicCall()
5214 NumRows->getZExtValue() * NumColumns->getZExtValue(), in visitIntrinsicCall()
5218 Assert(Stride->getZExtValue() >= NumRows->getZExtValue(), in visitIntrinsicCall()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DType.h3458 unsigned NumRows;
3471 unsigned getNumRows() const { return NumRows; }
3497 unsigned NumRows, unsigned NumColumns,
3500 ID.AddInteger(NumRows);
H A DASTContext.h1466 QualType getConstantMatrixType(QualType ElementType, unsigned NumRows,
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaType.cpp2675 QualType Sema::BuildMatrixType(QualType ElementTy, Expr *NumRows, Expr *NumCols, in BuildMatrixType() argument
2687 if (NumRows->isTypeDependent() || NumCols->isTypeDependent() || in BuildMatrixType()
2688 NumRows->isValueDependent() || NumCols->isValueDependent()) in BuildMatrixType()
2689 return Context.getDependentSizedMatrixType(ElementTy, NumRows, NumCols, in BuildMatrixType()
2692 Optional<llvm::APSInt> ValueRows = NumRows->getIntegerConstantExpr(Context); in BuildMatrixType()
2696 auto const RowRange = NumRows->getSourceRange(); in BuildMatrixType()
H A DTreeTransform.h900 QualType RebuildConstantMatrixType(QualType ElementType, unsigned NumRows,
14355 QualType ElementType, unsigned NumRows, unsigned NumColumns) { in RebuildConstantMatrixType() argument
14356 return SemaRef.Context.getConstantMatrixType(ElementType, NumRows, in RebuildConstantMatrixType()
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp4065 QualType ASTContext::getConstantMatrixType(QualType ElementTy, unsigned NumRows, in getConstantMatrixType() argument
4068 ConstantMatrixType::Profile(ID, ElementTy, NumRows, NumColumns, in getConstantMatrixType()
4073 assert(ConstantMatrixType::isDimensionValid(NumRows) && in getConstantMatrixType()
4083 getConstantMatrixType(getCanonicalType(ElementTy), NumRows, NumColumns); in getConstantMatrixType()
4091 ConstantMatrixType(ElementTy, NumRows, NumColumns, Canonical); in getConstantMatrixType()
H A DType.cpp311 : MatrixType(tc, matrixType, canonType), NumRows(nRows), in ConstantMatrixType()
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExpr.cpp3873 llvm::Value *NumRows = Builder.getIntN( in EmitMatrixSubscriptExpr() local
3877 Builder.CreateAdd(Builder.CreateMul(ColIdx, NumRows), RowIdx); in EmitMatrixSubscriptExpr()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/
H A DAttr.td2791 let Args = [ExprArgument<"NumRows">, ExprArgument<"NumColumns">];
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h1953 QualType BuildMatrixType(QualType T, Expr *NumRows, Expr *NumColumns,