|
inline ::llvm::hash_code | mlir::hash_value (AffineMap arg) |
|
AffineMap | mlir::simplifyAffineMap (AffineMap map) |
| Simplifies an affine map by simplifying its underlying AffineExpr results. More...
|
|
AffineMap | mlir::compressDims (AffineMap map, const llvm::SmallBitVector &unusedDims) |
| Drop the dims that are listed in unusedDims . More...
|
|
AffineMap | mlir::compressUnusedDims (AffineMap map) |
| Drop the dims that are not used. More...
|
|
SmallVector< AffineMap > | mlir::compressUnusedDims (ArrayRef< AffineMap > maps) |
| Drop the dims that are not used by any of the individual maps in maps . More...
|
|
AffineMap | mlir::compressSymbols (AffineMap map, const llvm::SmallBitVector &unusedSymbols) |
| Drop the symbols that are listed in unusedSymbols . More...
|
|
AffineMap | mlir::compressUnusedSymbols (AffineMap map) |
| Drop the symbols that are not used. More...
|
|
SmallVector< AffineMap > | mlir::compressUnusedSymbols (ArrayRef< AffineMap > maps) |
| Drop the symbols that are not used by any of the individual maps in maps . More...
|
|
AffineMap | mlir::foldAttributesIntoMap (Builder &b, AffineMap map, ArrayRef< OpFoldResult > operands, SmallVector< Value > &remainingValues) |
| Fold all attributes among the given operands into the affine map. More...
|
|
AffineMap | mlir::removeDuplicateExprs (AffineMap map) |
| Returns a map with the same dimension and symbol count as map , but whose results are the unique affine expressions of map . More...
|
|
AffineMap | mlir::inversePermutation (AffineMap map) |
| Returns a map of codomain to domain dimensions such that the first codomain dimension for a particular domain dimension is selected. More...
|
|
AffineMap | mlir::inverseAndBroadcastProjectedPermutation (AffineMap map) |
| Return the reverse map of a projected permutation where the projected dimensions are transformed into 0s. More...
|
|
AffineMap | mlir::concatAffineMaps (ArrayRef< AffineMap > maps) |
| Concatenates a list of maps into a single AffineMap, stepping over potentially empty maps. More...
|
|
AffineMap | mlir::projectDims (AffineMap map, const llvm::SmallBitVector &projectedDimensions, bool compressDimsFlag=false) |
| Returns the map that results from projecting out the dimensions specified in projectedDimensions . More...
|
|
AffineMap | mlir::projectSymbols (AffineMap map, const llvm::SmallBitVector &projectedSymbols, bool compressSymbolsFlag=false) |
| Symbol counterpart of projectDims . More...
|
|
AffineMap | mlir::getProjectedMap (AffineMap map, const llvm::SmallBitVector &projectedDimensions, bool compressDimsFlag=true, bool compressSymbolsFlag=true) |
| Calls projectDims(map, projectedDimensions, compressDimsFlag) . More...
|
|
llvm::SmallBitVector | mlir::getUnusedDimsBitVector (ArrayRef< AffineMap > maps) |
|
llvm::SmallBitVector | mlir::getUnusedSymbolsBitVector (ArrayRef< AffineMap > maps) |
|
AffineMap | mlir::expandDimsToRank (AffineMap map, int64_t rank, const llvm::SmallBitVector &projectedDimensions) |
| Expand map to operate on rank dims while projecting out the dims in projectedDimensions . More...
|
|
raw_ostream & | mlir::operator<< (raw_ostream &os, AffineMap map) |
|
template<typename T > |
SmallVector< T > | mlir::applyPermutationMap (AffineMap map, llvm::ArrayRef< T > source) |
| Apply a permutation from map to source and return the result. More...
|
|
template<typename AffineExprContainer > |
static void | mlir::getMaxDimAndSymbol (ArrayRef< AffineExprContainer > exprsList, int64_t &maxDim, int64_t &maxSym) |
| Calculates maximum dimension and symbol positions from the expressions in exprsLists and stores them in maxDim and maxSym respectively. More...
|
|