Home
last modified time | relevance | path

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

/llvm-project/mlir/lib/Dialect/Transform/Utils/
H A DUtils.cpp18 OpAsmPrinter &printer, Operation *op, Value packed, Type packedType, in printPackedOrDynamicIndexList() argument
24 if (packedType) { in printPackedOrDynamicIndexList()
25 printer << " : " << packedType; in printPackedOrDynamicIndexList()
35 Type &packedType, SmallVectorImpl<OpAsmParser::UnresolvedOperand> &values, in parsePackedOrDynamicIndexList() argument
42 if (packedType && (parser.parseColonType(packedType).failed())) in parsePackedOrDynamicIndexList()
/llvm-project/mlir/include/mlir/Dialect/Transform/Utils/
H A DUtils.h37 Value packed, Type packedType,
55 Type &packedType, SmallVectorImpl<OpAsmParser::UnresolvedOperand> &values,
61 Type packedType; in parsePackedOrDynamicIndexList() local
62 return parsePackedOrDynamicIndexList(parser, packed, packedType, values, in parsePackedOrDynamicIndexList()
/llvm-project/mlir/lib/Conversion/FuncToLLVM/
H A DFuncToLLVM.cpp711 auto packedType = getTypeConverter()->packFunctionResults( in runOnOperation()
713 if (!packedType) { in runOnOperation()
717 Value packed = rewriter.create<LLVM::UndefOp>(loc, packedType); in runOnOperation()
661 auto packedType = getTypeConverter()->packFunctionResults( matchAndRewrite() local
/llvm-project/mlir/lib/Conversion/GPUCommon/
H A DGPUOpsLowering.cpp768 auto packedType = getTypeConverter()->packFunctionResults(
770 if (!packedType) {
774 Value packed = rewriter.create<LLVM::UndefOp>(loc, packedType);
699 auto packedType = getTypeConverter()->packFunctionResults( matchAndRewrite() local
/llvm-project/mlir/lib/Dialect/Tensor/IR/
H A DTensorOps.cpp3986 ShapedType packedType = (std::is_same<OpTy, PackOp>::value) in getPackOpResultTypeShape()
3989 size_t packedRank = packedType.getRank(); in getPackOpResultTypeShape()
4003 if (!areAllInBound(expectedPackedType.getShape(), packedType.getShape())) { in getResultShape()
4006 << expectedPackedType << ", got " << packedType; in getResultShape()
4009 llvm::zip(packedType.getShape().take_back(mixedTiles.size()), in getResultShape()
4335 ShapedType packedType = (std::is_same<OpTy, PackOp>::value) in build()
4340 packedType.getShape().take_back(mixedTiles.size()), mixedTiles)) { in build()
3753 ShapedType packedType = (std::is_same<OpTy, PackOp>::value) commonVerifierPackAndUnPackOp() local
4091 ShapedType packedType = (std::is_same<OpTy, PackOp>::value) areTilesAndTiledDimsAllConstant() local
/llvm-project/mlir/lib/Dialect/Vector/Transforms/
H A DVectorTransforms.cpp618 VectorType packedType = in matchAndRewrite()
621 rewriter.create<vector::BitCastOp>(loc, packedType, packedValue); in matchAndRewrite()
619 VectorType packedType = matchAndRewrite() local