Lines Matching defs:unPackOp
1670 auto unPackOp = dyn_cast<tensor::UnPackOp>(*packOrUnpackOps.begin());
1671 if ((!packOp && !unPackOp)) {
1683 else if (unPackOp)
1684 linalgOp = unPackOp.getSource().getDefiningOp<LinalgOp>();
1694 if (unPackOp) {
1695 assert(!packOp && "packOp must be null on entry when unPackOp is not null");
1697 cast<OpResult>(unPackOp.getSource()).getResultNumber());
1711 !isValidPackingPermutation(unPackOp, perm, permType)) {
1713 unPackOp ? unPackOp.getOperation() : packOp.getOperation();
1718 // From here on, packOp and linalgOp are always present, unPackOp may or may
1724 rewriter, packOp, linalgOp, unPackOp, getOuterPerm(), getInnerPerm());
1732 if (unPackOp) {