[Mlir-commits] [mlir] [mlir][sparse] code cleanup (remove dead code related to filter loop). (PR #72573)
Yinying Li
llvmlistbot at llvm.org
Thu Nov 16 14:00:22 PST 2023
================
@@ -225,32 +213,13 @@ static unsigned getNumNonTrivialIdxExpOnSparseLvls(AffineMap map,
return 0;
const SparseTensorType stt(rtp);
- // FIXME: There's some dim/lvl confusion here. The previous version of
- // the code asserted that there are `lvlRank`-many expressions, but then
- // the `exprs[d]` expression assumes there are in fact `dimRank`-many
- // expressions. Even though `ArrayRef::operator[]` will check for OOB,
- // the mismatch between the assertion and the usage belies that this code
- // cannot support non-permutations.
- //
- // Elsewhere in this file the maps returned by
- // `linalg::GenericOp::getMatchingIndexingMap` are inconsistent about
- // whether they're expected to have `lvlRank`-many or `dimRank`-many
- // expressions (cf., `genSubscript` vs `findSparseAnnotations`);
- // so those are no help in determining which is actually intended.
- //
- // For now we work around this problem by asserting the two ranks agree.
- const Dimension dimRank = stt.getDimRank();
const Level lvlRank = stt.getLvlRank();
- assert(dimRank == lvlRank && "Non-permutations not currently supported");
const auto exprs = map.getResults();
- assert(static_cast<Dimension>(exprs.size()) == dimRank &&
+ assert(static_cast<Dimension>(exprs.size()) == lvlRank &&
"AffineMap does not have dimension-rank many results");
----------------
yinying-lisa-li wrote:
Maybe change the message to lvlRank as well?
https://github.com/llvm/llvm-project/pull/72573
More information about the Mlir-commits
mailing list