summaryrefslogtreecommitdiffstats
path: root/mlir/lib/Transforms/LoopTiling.cpp
diff options
context:
space:
mode:
authorUday Bondhugula <udayb@iisc.ac.in>2019-09-27 11:57:52 -0700
committerA. Unique TensorFlower <gardener@tensorflow.org>2019-09-27 11:58:24 -0700
commit74eabdd14eb3ed697d6dc4d72c3423ec81dd80f4 (patch)
tree9d43312d5e2477b49aeefdbe382d046e1941d53c /mlir/lib/Transforms/LoopTiling.cpp
parentddf737c5da728f25c5e0413bc737d04b2d92df96 (diff)
downloadbcm5719-llvm-74eabdd14eb3ed697d6dc4d72c3423ec81dd80f4.tar.gz
bcm5719-llvm-74eabdd14eb3ed697d6dc4d72c3423ec81dd80f4.zip
NFC - clean up op accessor usage, std.load/store op verify, other stale info
- also remove stale terminology/references in docs Signed-off-by: Uday Bondhugula <uday@polymagelabs.com> Closes tensorflow/mlir#148 COPYBARA_INTEGRATE_REVIEW=https://github.com/tensorflow/mlir/pull/148 from bondhugula:cleanup e846b641a3c2936e874138aff480a23cdbf66591 PiperOrigin-RevId: 271618279
Diffstat (limited to 'mlir/lib/Transforms/LoopTiling.cpp')
-rw-r--r--mlir/lib/Transforms/LoopTiling.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/mlir/lib/Transforms/LoopTiling.cpp b/mlir/lib/Transforms/LoopTiling.cpp
index d90e727b0ac..af1ecd06ee6 100644
--- a/mlir/lib/Transforms/LoopTiling.cpp
+++ b/mlir/lib/Transforms/LoopTiling.cpp
@@ -190,7 +190,7 @@ LogicalResult mlir::tileCodeGen(MutableArrayRef<AffineForOp> band,
// Check if the supplied for op's are all successively nested.
for (unsigned i = 1, e = band.size(); i < e; i++) {
- assert(band[i].getOperation()->getParentOp() == band[i - 1].getOperation());
+ assert(band[i].getParentOp() == band[i - 1].getOperation());
}
auto origLoops = band;
OpenPOWER on IntegriCloud