aboutsummaryrefslogtreecommitdiff
path: root/mlir/lib/Transforms/LoopFusion.cpp
diff options
context:
space:
mode:
authorMehdi Amini <joker.eph@gmail.com>2021-12-07 18:27:58 +0000
committerMehdi Amini <joker.eph@gmail.com>2021-12-08 06:05:26 +0000
commitbe0a7e9f27083ada6072fcc0711ffa5630daa5ec (patch)
treee8b711523071e25efe6617b58934c89e468eecd5 /mlir/lib/Transforms/LoopFusion.cpp
parent3bed2a7212ceef611d74c9a2aa679cec31375cee (diff)
downloadllvm-be0a7e9f27083ada6072fcc0711ffa5630daa5ec.zip
llvm-be0a7e9f27083ada6072fcc0711ffa5630daa5ec.tar.gz
llvm-be0a7e9f27083ada6072fcc0711ffa5630daa5ec.tar.bz2
Adjust "end namespace" comment in MLIR to match new agree'd coding style
See D115115 and this mailing list discussion: https://lists.llvm.org/pipermail/llvm-dev/2021-December/154199.html Differential Revision: https://reviews.llvm.org/D115309
Diffstat (limited to 'mlir/lib/Transforms/LoopFusion.cpp')
-rw-r--r--mlir/lib/Transforms/LoopFusion.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/mlir/lib/Transforms/LoopFusion.cpp b/mlir/lib/Transforms/LoopFusion.cpp
index 24ef03ba..1a3de13 100644
--- a/mlir/lib/Transforms/LoopFusion.cpp
+++ b/mlir/lib/Transforms/LoopFusion.cpp
@@ -59,7 +59,7 @@ struct LoopFusion : public AffineLoopFusionBase<LoopFusion> {
void runOnFunction() override;
};
-} // end anonymous namespace
+} // namespace
std::unique_ptr<OperationPass<FuncOp>>
mlir::createLoopFusionPass(unsigned fastMemorySpace,
@@ -726,7 +726,7 @@ void gatherEscapingMemrefs(unsigned id, MemRefDependenceGraph *mdg,
}
}
-} // end anonymous namespace
+} // namespace
// Initializes the data dependence graph by walking operations in 'f'.
// Assigns each node in the graph a node id based on program order in 'f'.
@@ -1972,7 +1972,7 @@ public:
}
};
-} // end anonymous namespace
+} // namespace
void LoopFusion::runOnFunction() {
MemRefDependenceGraph g;