Skip to content

Commit

Permalink
fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
gysit committed Jan 22, 2021
1 parent 1348fd5 commit d39aedf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/Dialect/Stencil/CombineToIfElsePass.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ void CombineToIfElsePass::runOnFunction() {
return signalPassFailure();
}

// Poppulate the pattern list depending on the config
// Populate the pattern list depending on the config
OwningRewritePatternList patterns;
if (internalOnly) {
patterns.insert<InternalIfElseRewrite>(&getContext());
Expand Down
2 changes: 1 addition & 1 deletion lib/Dialect/Stencil/DomainSplitPass.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ void DomainSplitPass::runOnFunction() {
}

splitOnDomains(funcOp);
funcOp.dump();
//funcOp.dump();
splitOnLastCombines(funcOp);
}

Expand Down
2 changes: 1 addition & 1 deletion lib/Dialect/Stencil/StencilUnrollingPass.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ void StencilUnrollingPass::addPeelIteration(stencil::ApplyOp applyOp) {
auto peelOp = cast<stencil::ApplyOp>(b.clone(*applyOp.getOperation()));
auto bodyOp = cast<stencil::ApplyOp>(b.clone(*applyOp.getOperation()));

// // Adapt the shape of the two apply ops
// Adapt the shape of the two apply ops
auto lb = shapeOp.getLB();
auto ub = shapeOp.getUB();
int64_t split = ub[unrollIndex] - domainSize % unrollFactor;
Expand Down

0 comments on commit d39aedf

Please sign in to comment.