Details
Details
- Reviewers
mehdi_amini - Commits
- rGeb3154006673: [mlir] Canonicalize single-iteration ParallelOp
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
| mlir/lib/Dialect/SCF/SCF.cpp | ||
|---|---|---|
| 1252 | Nit, you could reduce the indentation with: auto reduce = dyn_cast<ReduceOp>(bodyOp);
if (!reduce) {
rewriter.clone(bodyOp, mapping);
continue;
}
... | |
Nit, you could reduce the indentation with:
auto reduce = dyn_cast<ReduceOp>(bodyOp); if (!reduce) { rewriter.clone(bodyOp, mapping); continue; } ...