Lines Matching defs:opResult
76 OpResult opResult) {
77 auto tensorType = llvm::dyn_cast<TensorType>(opResult.getType());
82 auto destOp = opResult.getDefiningOp<DestinationStyleOpInterface>();
84 return destOp.getTiedOpOperand(opResult)->get();
88 b.setInsertionPoint(opResult.getDefiningOp());
95 if (failed(reifyResultShapes(b, opResult.getDefiningOp(), reifiedShapes)))
97 mixedSizes = reifiedShapes[opResult.getResultNumber()];
113 for (OpResult opResult : op->getResults()) {
114 if (llvm::isa<TensorType>(opResult.getType())) {
115 FailureOr<Value> destination = getOrCreateDestination(b, loc, opResult);