Lines Matching defs:dstStt
1403 SparseTensorType dstStt = getSparseTensorType(getDest());
1407 if (dstStt.isAllDense() || !dstStt.isAllOrdered())
1410 if (srcStt.isAllOrdered() && dstStt.isAllOrdered() &&
1411 srcStt.hasSameDimToLvl(dstStt)) {
1555 auto dstStt = getSparseTensorType(getDest());
1557 ArrayRef<LevelType> dstLvlTps = dstStt.getLvlTypes();
1566 if (srcStt.getPosWidth() != dstStt.getPosWidth() ||
1567 srcStt.getCrdWidth() != dstStt.getCrdWidth()) {
1571 if (srcStt.getElementType() != dstStt.getElementType())
1575 SmallVector<Size> dstLvlShape = dstStt.getLvlShape();
1836 SparseTensorType dstStt = getSparseTensorType(*this);
1837 if (dstStt.isAllDense() || !dstStt.isAllOrdered())
1840 bool allSameOrdered = llvm::all_of(getInputs(), [dstStt](Value op) {
1841 return getSparseTensorType(op).hasSameDimToLvl(dstStt);
1848 allSameOrdered && getDimension() == 0 && dstStt.isIdentity();
2011 SparseTensorType dstStt = getSparseTensorType(getResultCoo());
2013 if (!srcStt.isCOOType() || !dstStt.isCOOType())
2016 if (!srcStt.hasSameDimToLvl(dstStt))
2019 if (srcStt.getPosType() != dstStt.getPosType() ||
2020 srcStt.getCrdType() != dstStt.getCrdType() ||
2021 srcStt.getElementType() != dstStt.getElementType())