================ @@ -1714,6 +1727,42 @@ convertOmpSingle(omp::SingleOp &singleOp, llvm::IRBuilderBase &builder, return success(); } +static bool teamsReductionContainedInDistribute(omp::TeamsOp teamsOp) { + auto iface = + llvm::cast<mlir::omp::BlockArgOpenMPOpInterface>(teamsOp.getOperation()); + // Check that all uses of the reduction block arg has the same distribute op + // parent. + llvm::SmallVector<mlir::Operation *> debugUses; + Operation *distOp = nullptr; + for (auto ra : iface.getReductionBlockArgs()) + for (auto &use : ra.getUses()) { + auto *useOp = use.getOwner(); + // Ignore debug uses. + if (mlir::isa<LLVM::DbgDeclareOp, LLVM::DbgValueOp>(useOp)) { + debugUses.push_back(useOp); + continue; + } + + auto currentDistOp = useOp->getParentOfType<omp::DistributeOp>(); + // Use is not inside a distribute op - return false + if (!currentDistOp) + return false; + // Multiple distribute operations - return false + Operation *currentOp = currentDistOp.getOperation(); + if (distOp && (distOp != currentOp)) + return false; + + distOp = currentOp; + } + + // If we are going to use distribute reduction then remove any debug uses of + // the reduction parameters in teamsOp. Otherwise they will be left without + // any mapped value in moduleTranslation and will eventually error out. + for (auto use : debugUses) + use->erase(); ---------------- abidh wrote:
The `omp.distribute` has its own copy of the `hlfir.declare` for the reduction variable so we should not be losing this information even if we drop it from here. https://github.com/llvm/llvm-project/pull/133310 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits