summaryrefslogtreecommitdiffstats
path: root/mlir/lib/Analysis/Utils.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'mlir/lib/Analysis/Utils.cpp')
-rw-r--r--mlir/lib/Analysis/Utils.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/mlir/lib/Analysis/Utils.cpp b/mlir/lib/Analysis/Utils.cpp
index 823fbbe9fcd..0499e866fe8 100644
--- a/mlir/lib/Analysis/Utils.cpp
+++ b/mlir/lib/Analysis/Utils.cpp
@@ -36,12 +36,12 @@
using namespace mlir;
/// Populates 'loops' with IVs of the loops surrounding 'inst' ordered from
-/// the outermost 'affine.for' instruction to the innermost one.
+/// the outermost 'for' instruction to the innermost one.
void mlir::getLoopIVs(const Instruction &inst,
SmallVectorImpl<OpPointer<AffineForOp>> *loops) {
auto *currInst = inst.getParentInst();
OpPointer<AffineForOp> currAffineForOp;
- // Traverse up the hierarchy collecing all 'affine.for' instruction while
+ // Traverse up the hierarchy collecing all 'for' instruction while
// skipping over 'affine.if' instructions.
while (currInst && ((currAffineForOp = currInst->dyn_cast<AffineForOp>()) ||
currInst->isa<AffineIfOp>())) {
@@ -111,8 +111,8 @@ bool MemRefRegion::unionBoundingBox(const MemRefRegion &other) {
// For example, the memref region for this load operation at loopDepth = 1 will
// be as below:
//
-// affine.for %i = 0 to 32 {
-// affine.for %ii = %i to (d0) -> (d0 + 8) (%i) {
+// for %i = 0 to 32 {
+// for %ii = %i to (d0) -> (d0 + 8) (%i) {
// load %A[%ii]
// }
// }
@@ -614,7 +614,7 @@ Optional<int64_t> mlir::getMemoryFootprintBytes(const Block &block,
int memorySpace) {
std::vector<std::unique_ptr<MemRefRegion>> regions;
- // Walk this 'affine.for' instruction to gather all memory regions.
+ // Walk this 'for' instruction to gather all memory regions.
bool error = false;
const_cast<Block *>(&block)->walk([&](Instruction *opInst) {
if (!opInst->isa<LoadOp>() && !opInst->isa<StoreOp>()) {
OpenPOWER on IntegriCloud