Lines Matching defs:destShape
4402 /// Returns true if the `srcShape` or `destShape` is different from the one in
4405 SmallVectorImpl<int64_t> &destShape) {
4409 destShape.assign(packOp.getDestType().getShape().begin(),
4426 ShapedType::isDynamic(destShape[destPos])) {
4431 size = destShape[destPos];
4433 destShape[destPos] = size;
4461 SmallVector<int64_t> srcShape, destShape;
4462 if (inferStaticShape(packOp, srcShape, destShape)) {
4472 bool needUpdateDestType = (destShape != originalResultType.getShape());
4474 auto newDestType = packOp.getDestType().clone(destShape);
4662 /// Returns true if the `srcShape` or `destShape` is different from the one in
4665 SmallVectorImpl<int64_t> &destShape) {
4669 destShape.assign(op.getDestType().getShape().begin(),
4685 ShapedType::isDynamic(destShape[destPos])) {
4690 size = destShape[destPos];
4692 destShape[destPos] = size;
4722 SmallVector<int64_t> srcShape, destShape;
4723 if (inferStaticShape(unPackOp, srcShape, destShape)) {
4732 if (destShape != unPackOp.getDestType().getShape()) {
4733 auto newDestType = unPackOp.getDestType().clone(destShape);