[mlir] add permutation utility

I found myself typing this code several times at different places
by now, so time to make this a general utility instead. Given
a permutation, it returns the permuted position of the input,
for example (i,j,k) -> (k,i,j) yields position 1 for input 0.

Reviewed By: ftynse

Differential Revision: https://reviews.llvm.org/D108347
This commit is contained in:
Aart Bik 2021-08-23 19:00:38 -07:00
parent 194b08000c
commit a643bd3189
2 changed files with 12 additions and 0 deletions

View file

@ -162,6 +162,10 @@ public:
/// when the caller knows it is safe to do so.
unsigned getDimPosition(unsigned idx) const;
/// Extracts the permuted position where given input index resides.
/// Fails when called on a non-permutation.
unsigned getPermutedPosition(unsigned input) const;
/// Return true if any affine expression involves AffineDimExpr `position`.
bool isFunctionOfDim(unsigned position) const {
return llvm::any_of(getResults(), [&](AffineExpr e) {

View file

@ -336,6 +336,14 @@ unsigned AffineMap::getDimPosition(unsigned idx) const {
return getResult(idx).cast<AffineDimExpr>().getPosition();
}
unsigned AffineMap::getPermutedPosition(unsigned input) const {
assert(isPermutation() && "invalid permutation request");
for (unsigned i = 0, numResults = getNumResults(); i < numResults; i++)
if (getDimPosition(i) == input)
return i;
llvm_unreachable("incorrect permutation request");
}
/// Folds the results of the application of an affine map on the provided
/// operands to a constant if possible. Returns false if the folding happens,
/// true otherwise.